Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F8890685
ArcanistJSONLinter.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
966 B
Subscribers
None
ArcanistJSONLinter.php
View Options
<?php
/**
* A linter for JSON files.
*/
final
class
ArcanistJSONLinter
extends
ArcanistLinter
{
const
LINT_PARSE_ERROR
=
1
;
public
function
getInfoName
()
{
return
pht
(
'JSON Lint'
);
}
public
function
getInfoDescription
()
{
return
pht
(
'Detect syntax errors in JSON files.'
);
}
public
function
getLinterName
()
{
return
'JSON'
;
}
public
function
getLinterConfigurationName
()
{
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
{
id
(
new
PhutilJSONParser
())->
parse
(
$data
);
}
catch
(
PhutilJSONParserException
$ex
)
{
$this
->
raiseLintAtLine
(
$ex
->
getSourceLine
(),
$ex
->
getSourceChar
(),
self
::
LINT_PARSE_ERROR
,
$ex
->
getMessage
());
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Jun 10, 1:34 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
3387638
Default Alt Text
ArcanistJSONLinter.php (966 B)
Attached To
rARC Arcanist
Event Timeline
Log In to Comment