1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-21 22:32:41 +01:00

Disable phutil filename check. To be implemented as a more pervasive check.

Differential Revision: 201587
Reviewed By: epriestley
This commit is contained in:
adonohue 2011-01-14 13:26:01 -08:00
parent 68dee48bf4
commit 59f48f7901
2 changed files with 0 additions and 18 deletions

View file

@ -233,21 +233,6 @@ foreach (Futures($futures) as $file => $future) {
"file.");
break;
}
} else if (count($classes) == 1) {
foreach ($classes as $class) {
$class_name = $class->getChildByIndex(1);
$class_string = $class_name->getConcreteString();
if ($file != $class_string.'.php') {
$rename = $class_string.'.php';
$requirements->addLint(
$class_name,
$class_string,
ArcanistPhutilModuleLinter::LINT_ANALYZER_CLASS_FILENAME,
"The name of this file differs from the name of the class it ".
"declares. Rename the file to '{$rename}'.");
}
break;
}
}
$uses_of_new = $root->selectDescendantsOfType('n_NEW');

View file

@ -32,7 +32,6 @@ class ArcanistPhutilModuleLinter extends ArcanistLinter {
const LINT_ANALYZER_DYNAMIC = 101;
const LINT_ANALYZER_NO_INIT = 102;
const LINT_ANALYZER_MULTIPLE_CLASSES = 103;
const LINT_ANALYZER_CLASS_FILENAME = 104;
public function getLintNameMap() {
return array(
@ -50,8 +49,6 @@ class ArcanistPhutilModuleLinter extends ArcanistLinter {
self::LINT_ANALYZER_NO_INIT => 'Analyzer: No __init__.php File',
self::LINT_ANALYZER_MULTIPLE_CLASSES
=> 'Analyzer: File Declares Multiple Classes',
self::LINT_ANALYZER_CLASS_FILENAME
=> 'Analyzer: Filename Does Not Match Class Declaration',
);
}