Page MenuHomePhabricator

D11324.id27210.diff
No OneTemporary

D11324.id27210.diff

diff --git a/src/lint/linter/ArcanistJSONLinter.php b/src/lint/linter/ArcanistJSONLinter.php
--- a/src/lint/linter/ArcanistJSONLinter.php
+++ b/src/lint/linter/ArcanistJSONLinter.php
@@ -5,6 +5,8 @@
*/
final class ArcanistJSONLinter extends ArcanistLinter {
+ const LINT_PARSE_ERROR = 1;
+
public function getInfoName() {
return 'JSON Lint';
}
@@ -21,17 +23,26 @@
return 'json';
}
+ public function getLintNameMap() {
+ return array(
+ self::LINT_PARSE_ERROR => pht('Parse Error'),
+ );
+ }
+
+ protected function canCustomizeLintSeverities() {
+ return false;
+ }
+
public function lintPath($path) {
$data = $this->getData($path);
try {
- $parser = new PhutilJSONParser();
- $parser->parse($data);
+ id(new PhutilJSONParser())->parse($data);
} catch (PhutilJSONParserException $ex) {
$this->raiseLintAtLine(
$ex->getSourceLine(),
$ex->getSourceChar(),
- $this->getLinterName(),
+ self::LINT_PARSE_ERROR,
$ex->getMessage());
}
}

File Metadata

Mime Type
text/plain
Expires
Sat, Mar 15, 8:25 AM (3 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7572235
Default Alt Text
D11324.id27210.diff (1 KB)

Event Timeline