Changeset View
Changeset View
Standalone View
Standalone View
src/lint/linter/ArcanistLinter.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Implements lint rules, like syntax checks for a specific language. | * Implements lint rules, like syntax checks for a specific language. | ||||
| * | * | ||||
| * @task info Human Readable Information | * @task info Human Readable Information | ||||
| * | |||||
| * @stable | * @stable | ||||
| */ | */ | ||||
| abstract class ArcanistLinter { | abstract class ArcanistLinter { | ||||
| const GRANULARITY_FILE = 1; | const GRANULARITY_FILE = 1; | ||||
| const GRANULARITY_DIRECTORY = 2; | const GRANULARITY_DIRECTORY = 2; | ||||
| const GRANULARITY_REPOSITORY = 3; | const GRANULARITY_REPOSITORY = 3; | ||||
| const GRANULARITY_GLOBAL = 4; | const GRANULARITY_GLOBAL = 4; | ||||
| ▲ Show 20 Lines • Show All 488 Lines • Show Last 20 Lines | |||||