Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3281239
ArcanistNoLintLinter.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
652 B
Referenced Files
None
Subscribers
None
ArcanistNoLintLinter.php
View Options
<?php
/**
* Stops other linters from running on code marked with
* a nolint annotation.
*
* @group linter
*/
final
class
ArcanistNoLintLinter
extends
ArcanistLinter
{
public
function
willLintPaths
(
array
$paths
)
{
return
;
}
public
function
getLinterName
(
)
{
return
'NOLINT'
;
}
public
function
getLintSeverityMap
(
)
{
return
array
(
)
;
}
public
function
getLintNameMap
(
)
{
return
array
(
)
;
}
public
function
lintPath
(
$path
)
{
if
(
$this
->
isBinaryFile
(
$path
)
)
{
return
;
}
$data
=
$this
->
getData
(
$path
)
;
if
(
preg_match
(
'/@'
.
'nolint/'
,
$data
)
)
{
$this
->
stopAllLinters
(
)
;
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Mar 23, 20:16 (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1258970
Default Alt Text
ArcanistNoLintLinter.php (652 B)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment