Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2889120
ArcanistGeneratedLinter.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
573 B
Referenced Files
None
Subscribers
None
ArcanistGeneratedLinter.php
View Options
<?php
/**
* Stops other linters from running on generated code.
*
* @group linter
*/
final
class
ArcanistGeneratedLinter
extends
ArcanistLinter
{
public
function
willLintPaths
(
array
$paths
)
{
return
;
}
public
function
getLinterName
(
)
{
return
'GEN'
;
}
public
function
getLintSeverityMap
(
)
{
return
array
(
)
;
}
public
function
getLintNameMap
(
)
{
return
array
(
)
;
}
public
function
lintPath
(
$path
)
{
$data
=
$this
->
getData
(
$path
)
;
if
(
preg_match
(
'/@'
.
'generated/'
,
$data
)
)
{
$this
->
stopAllLinters
(
)
;
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Jan 19 2025, 11:32 (5 w, 16 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1124188
Default Alt Text
ArcanistGeneratedLinter.php (573 B)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment