2013-02-20 23:19:55 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks files for unresolved merge conflicts.
|
|
|
|
*
|
|
|
|
* @group linter
|
|
|
|
*/
|
|
|
|
final class ArcanistMergeConflictLinter extends ArcanistLinter {
|
|
|
|
const LINT_MERGECONFLICT = 1;
|
|
|
|
|
2014-05-10 10:55:47 +02:00
|
|
|
public function getLinterName() {
|
|
|
|
return 'MERGECONFLICT';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getLinterConfigurationName() {
|
|
|
|
return 'merge-conflict';
|
|
|
|
}
|
|
|
|
|
2013-02-20 23:19:55 +01:00
|
|
|
public function willLintPaths(array $paths) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function lintPath($path) {
|
|
|
|
$lines = phutil_split_lines($this->getData($path), false);
|
|
|
|
|
|
|
|
foreach ($lines as $lineno => $line) {
|
|
|
|
// An unresolved merge conflict will contain a series of seven
|
|
|
|
// '<', '=', or '>'.
|
|
|
|
if (preg_match('/^(>{7}|<{7}|={7})$/', $line)) {
|
|
|
|
$this->raiseLintAtLine(
|
|
|
|
$lineno + 1,
|
|
|
|
0,
|
|
|
|
self::LINT_MERGECONFLICT,
|
2014-05-10 10:55:47 +02:00
|
|
|
'This syntax indicates there is an unresolved merge conflict.');
|
2013-02-20 23:19:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getLintSeverityMap() {
|
|
|
|
return array(
|
2014-05-10 10:55:47 +02:00
|
|
|
self::LINT_MERGECONFLICT => ArcanistLintSeverity::SEVERITY_ERROR,
|
2013-02-20 23:19:55 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getLintNameMap() {
|
|
|
|
return array(
|
2014-05-10 10:55:47 +02:00
|
|
|
self::LINT_MERGECONFLICT => 'Unresolved merge conflict',
|
2013-02-20 23:19:55 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|