Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15381569
D11324.id27210.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D11324.id27210.diff
View Options
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
Details
Attached
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)
Attached To
Mode
D11324: Minor improvements to `ArcanistJSONLinter`
Attached
Detach File
Event Timeline
Log In to Comment