Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/lint/linter/PhabricatorJavelinLinter.php
| Show First 20 Lines • Show All 42 Lines • ▼ Show 20 Lines | foreach (Futures($futures)->limit(8) as $path => $future) { | ||||
| $this->symbols[$path] = $future->resolvex(); | $this->symbols[$path] = $future->resolvex(); | ||||
| } | } | ||||
| } | } | ||||
| public function getLinterName() { | public function getLinterName() { | ||||
| return 'JAVELIN'; | return 'JAVELIN'; | ||||
| } | } | ||||
| public function getLinterConfigurationName() { | |||||
| return 'javelin'; | |||||
| } | |||||
| public function getLintSeverityMap() { | public function getLintSeverityMap() { | ||||
| return array( | return array( | ||||
| self::LINT_MISSING_BINARY => ArcanistLintSeverity::SEVERITY_WARNING, | self::LINT_MISSING_BINARY => ArcanistLintSeverity::SEVERITY_WARNING, | ||||
| ); | ); | ||||
| } | } | ||||
| public function getLintNameMap() { | public function getLintNameMap() { | ||||
| return array( | return array( | ||||
| ▲ Show 20 Lines • Show All 207 Lines • Show Last 20 Lines | |||||