mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 23:02:41 +01:00
Remove commit linter
Summary: Ref T7674. This linter doesn't make sense without commit hooks. Test Plan: N/A Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Maniphest Tasks: T7674 Differential Revision: https://secure.phabricator.com/D12697
This commit is contained in:
parent
4330b27c07
commit
0846c6aff5
5 changed files with 0 additions and 83 deletions
|
@ -40,8 +40,6 @@ phutil_register_library_map(array(
|
||||||
'ArcanistCoffeeLintLinterTestCase' => 'lint/linter/__tests__/ArcanistCoffeeLintLinterTestCase.php',
|
'ArcanistCoffeeLintLinterTestCase' => 'lint/linter/__tests__/ArcanistCoffeeLintLinterTestCase.php',
|
||||||
'ArcanistCommentRemover' => 'parser/ArcanistCommentRemover.php',
|
'ArcanistCommentRemover' => 'parser/ArcanistCommentRemover.php',
|
||||||
'ArcanistCommentRemoverTestCase' => 'parser/__tests__/ArcanistCommentRemoverTestCase.php',
|
'ArcanistCommentRemoverTestCase' => 'parser/__tests__/ArcanistCommentRemoverTestCase.php',
|
||||||
'ArcanistCommitLinter' => 'lint/linter/ArcanistCommitLinter.php',
|
|
||||||
'ArcanistCommitLinterTestCase' => 'lint/linter/__tests__/ArcanistCommitLinterTestCase.php',
|
|
||||||
'ArcanistCommitWorkflow' => 'workflow/ArcanistCommitWorkflow.php',
|
'ArcanistCommitWorkflow' => 'workflow/ArcanistCommitWorkflow.php',
|
||||||
'ArcanistCompilerLintRenderer' => 'lint/renderer/ArcanistCompilerLintRenderer.php',
|
'ArcanistCompilerLintRenderer' => 'lint/renderer/ArcanistCompilerLintRenderer.php',
|
||||||
'ArcanistComprehensiveLintEngine' => 'lint/engine/ArcanistComprehensiveLintEngine.php',
|
'ArcanistComprehensiveLintEngine' => 'lint/engine/ArcanistComprehensiveLintEngine.php',
|
||||||
|
@ -247,8 +245,6 @@ phutil_register_library_map(array(
|
||||||
'ArcanistCoffeeLintLinter' => 'ArcanistExternalLinter',
|
'ArcanistCoffeeLintLinter' => 'ArcanistExternalLinter',
|
||||||
'ArcanistCoffeeLintLinterTestCase' => 'ArcanistExternalLinterTestCase',
|
'ArcanistCoffeeLintLinterTestCase' => 'ArcanistExternalLinterTestCase',
|
||||||
'ArcanistCommentRemoverTestCase' => 'ArcanistTestCase',
|
'ArcanistCommentRemoverTestCase' => 'ArcanistTestCase',
|
||||||
'ArcanistCommitLinter' => 'ArcanistLinter',
|
|
||||||
'ArcanistCommitLinterTestCase' => 'ArcanistLinterTestCase',
|
|
||||||
'ArcanistCommitWorkflow' => 'ArcanistWorkflow',
|
'ArcanistCommitWorkflow' => 'ArcanistWorkflow',
|
||||||
'ArcanistCompilerLintRenderer' => 'ArcanistLintRenderer',
|
'ArcanistCompilerLintRenderer' => 'ArcanistLintRenderer',
|
||||||
'ArcanistComprehensiveLintEngine' => 'ArcanistLintEngine',
|
'ArcanistComprehensiveLintEngine' => 'ArcanistLintEngine',
|
||||||
|
|
|
@ -1,60 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
final class ArcanistCommitLinter extends ArcanistLinter {
|
|
||||||
|
|
||||||
const LINT_NO_COMMIT = 1;
|
|
||||||
|
|
||||||
public function getInfoName() {
|
|
||||||
return pht('Commit Linter');
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getInfoDescription() {
|
|
||||||
return pht('Ensures that specially marked files are not committed.');
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getLinterPriority() {
|
|
||||||
return 0.5;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getLinterName() {
|
|
||||||
return 'COMMIT';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getLinterConfigurationName() {
|
|
||||||
return 'commit';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getLintNameMap() {
|
|
||||||
return array(
|
|
||||||
self::LINT_NO_COMMIT => pht('Explicit %s', '@no'.'commit'),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function canCustomizeLintSeverities() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function lintPath($path) {
|
|
||||||
if ($this->getEngine()->getCommitHookMode()) {
|
|
||||||
$this->lintNoCommit($path);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private function lintNoCommit($path) {
|
|
||||||
$data = $this->getData($path);
|
|
||||||
|
|
||||||
$deadly = '@no'.'commit';
|
|
||||||
$offset = strpos($data, $deadly);
|
|
||||||
|
|
||||||
if ($offset !== false) {
|
|
||||||
$this->raiseLintAtOffset(
|
|
||||||
$offset,
|
|
||||||
self::LINT_NO_COMMIT,
|
|
||||||
pht(
|
|
||||||
'This file is explicitly marked as "%s", which blocks commits.',
|
|
||||||
$deadly),
|
|
||||||
$deadly);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
final class ArcanistCommitLinterTestCase extends ArcanistLinterTestCase {
|
|
||||||
|
|
||||||
public function testLinter() {
|
|
||||||
return $this->executeTestsInDirectory(dirname(__FILE__).'/commit/');
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
@nocommit
|
|
||||||
~~~~~~~~~~
|
|
||||||
error:1:1
|
|
||||||
~~~~~~~~~~
|
|
||||||
~~~~~~~~~~
|
|
||||||
{
|
|
||||||
"hook": true
|
|
||||||
}
|
|
|
@ -1,2 +0,0 @@
|
||||||
@nocommit
|
|
||||||
~~~~~~~~~~
|
|
Loading…
Reference in a new issue