Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295059
ArcanistFilenameLinter.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
859 B
Referenced Files
None
Subscribers
None
ArcanistFilenameLinter.php
View Options
<?php
/**
* Stifles creativity in choosing imaginative file names.
*
* @group linter
*/
final
class
ArcanistFilenameLinter
extends
ArcanistLinter
{
const
LINT_BAD_FILENAME
=
1
;
public
function
getLinterName
(
)
{
return
'NAME'
;
}
public
function
getLinterConfigurationName
(
)
{
return
'filename'
;
}
public
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.'
)
)
;
}
}
public
function
shouldLintDirectories
(
)
{
return
true
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 00:44 (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1257429
Default Alt Text
ArcanistFilenameLinter.php (859 B)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment