Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F8890697
ArcanistFilenameLinter.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
ArcanistFilenameLinter.php
View Options
<?php
/**
* Stifles creativity in choosing imaginative file names.
*/
final
class
ArcanistFilenameLinter
extends
ArcanistLinter
{
const
LINT_BAD_FILENAME
=
1
;
public
function
getInfoName
()
{
return
pht
(
'Filename'
);
}
public
function
getInfoDescription
()
{
return
pht
(
'Stifles developer creativity by requiring files have uninspired names '
.
'containing only letters, numbers, period, hyphen and underscore.'
);
}
public
function
getLinterName
()
{
return
'NAME'
;
}
public
function
getLinterConfigurationName
()
{
return
'filename'
;
}
protected
function
shouldLintBinaryFiles
()
{
return
true
;
}
public
function
getLintNameMap
()
{
return
array
(
self
::
LINT_BAD_FILENAME
=>
pht
(
'Bad Filename'
),
);
}
public
function
lintPath
(
$path
)
{
if
(!
preg_match
(
'@^[a-z0-9./
\\\\
_-]+$@i'
,
$path
))
{
$this
->
raiseLintAtPath
(
self
::
LINT_BAD_FILENAME
,
pht
(
'Name files using only letters, numbers, period, hyphen and '
.
'underscore.'
));
}
}
protected
function
shouldLintDirectories
()
{
return
true
;
}
protected
function
shouldLintSymbolicLinks
()
{
return
true
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Jun 10, 1:37 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
3387649
Default Alt Text
ArcanistFilenameLinter.php (1 KB)
Attached To
rARC Arcanist
Event Timeline
Log In to Comment