diff --git a/src/lint/linter/ArcanistScriptAndRegexLinter.php b/src/lint/linter/ArcanistScriptAndRegexLinter.php --- a/src/lint/linter/ArcanistScriptAndRegexLinter.php +++ b/src/lint/linter/ArcanistScriptAndRegexLinter.php @@ -170,6 +170,23 @@ 'run custom lint scripts.'); } + protected function shouldLintBinaryFiles() { + return true; + } + + protected function shouldLintDeletedFiles() { + return true; + } + + protected function shouldLintDirectories() { + return true; + } + + protected function shouldLintSymbolicLinks() { + return true; + } + + /* -( Linting )------------------------------------------------------------ */