Changeset View
Changeset View
Standalone View
Standalone View
src/lint/linter/ArcanistScriptAndRegexLinter.php
| Show First 20 Lines • Show All 146 Lines • ▼ Show 20 Lines | |||||
| * The simplest valid regex for line-oriented output is something like this: | * The simplest valid regex for line-oriented output is something like this: | ||||
| * | * | ||||
| * /^(?P<message>.*)$/m | * /^(?P<message>.*)$/m | ||||
| * | * | ||||
| * @task lint Linting | * @task lint Linting | ||||
| * @task linterinfo Linter Information | * @task linterinfo Linter Information | ||||
| * @task parse Parsing Output | * @task parse Parsing Output | ||||
| * @task config Validating Configuration | * @task config Validating Configuration | ||||
| * | |||||
| * @group linter | |||||
| */ | */ | ||||
| final class ArcanistScriptAndRegexLinter extends ArcanistLinter { | final class ArcanistScriptAndRegexLinter extends ArcanistLinter { | ||||
| private $output = array(); | private $output = array(); | ||||
| public function getInfoName() { | public function getInfoName() { | ||||
| return pht('Script and Regex'); | return pht('Script and Regex'); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 245 Lines • Show Last 20 Lines | |||||