mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-09 06:11:01 +01:00
c58f1b9a25
Summary: Prefer pip to easy_install also fixes incorrect install instructions for closure linters Fixes T10892 Ref T10038 Test Plan: inspection Reviewers: avivey, #blessed_reviewers, epriestley, tjstum Reviewed By: avivey, #blessed_reviewers, epriestley, tjstum Subscribers: avivey, Korvin Maniphest Tasks: T10038, T10892 Differential Revision: https://secure.phabricator.com/D15818
98 lines
2.4 KiB
PHP
98 lines
2.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Uses "pep8.py" to enforce PEP8 rules for Python.
|
|
*/
|
|
final class ArcanistPEP8Linter extends ArcanistExternalLinter {
|
|
|
|
public function getInfoName() {
|
|
return 'Python PEP 8';
|
|
}
|
|
|
|
public function getInfoURI() {
|
|
return 'https://pypi.python.org/pypi/pep8';
|
|
}
|
|
|
|
public function getInfoDescription() {
|
|
return pht(
|
|
'pep8 is a tool to check your Python code against some of the '.
|
|
'style conventions in PEP 8.');
|
|
}
|
|
|
|
public function getLinterName() {
|
|
return 'PEP8';
|
|
}
|
|
|
|
public function getLinterConfigurationName() {
|
|
return 'pep8';
|
|
}
|
|
|
|
public function getDefaultBinary() {
|
|
return 'pep8';
|
|
}
|
|
|
|
public function getVersion() {
|
|
list($stdout) = execx('%C --version', $this->getExecutableCommand());
|
|
|
|
$matches = array();
|
|
if (preg_match('/^(?P<version>\d+\.\d+(?:\.\d+)?)\b/', $stdout, $matches)) {
|
|
return $matches['version'];
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function getInstallInstructions() {
|
|
return pht('Install PEP8 using `%s`.', 'pip install pep8');
|
|
}
|
|
|
|
protected function parseLinterOutput($path, $err, $stdout, $stderr) {
|
|
$lines = phutil_split_lines($stdout, false);
|
|
|
|
$messages = array();
|
|
foreach ($lines as $line) {
|
|
$matches = null;
|
|
if (!preg_match('/^(.*?):(\d+):(\d+): (\S+) (.*)$/', $line, $matches)) {
|
|
continue;
|
|
}
|
|
foreach ($matches as $key => $match) {
|
|
$matches[$key] = trim($match);
|
|
}
|
|
$message = new ArcanistLintMessage();
|
|
$message->setPath($path);
|
|
$message->setLine($matches[2]);
|
|
$message->setChar($matches[3]);
|
|
$message->setCode($matches[4]);
|
|
$message->setName('PEP8 '.$matches[4]);
|
|
$message->setDescription($matches[5]);
|
|
$message->setSeverity($this->getLintMessageSeverity($matches[4]));
|
|
|
|
$messages[] = $message;
|
|
}
|
|
|
|
return $messages;
|
|
}
|
|
|
|
protected function getDefaultMessageSeverity($code) {
|
|
if (preg_match('/^W/', $code)) {
|
|
return ArcanistLintSeverity::SEVERITY_WARNING;
|
|
} else {
|
|
return ArcanistLintSeverity::SEVERITY_ERROR;
|
|
}
|
|
}
|
|
|
|
protected function getLintCodeFromLinterConfigurationKey($code) {
|
|
if (!preg_match('/^(E|W)\d+$/', $code)) {
|
|
throw new Exception(
|
|
pht(
|
|
'Unrecognized lint message code "%s". Expected a valid PEP8 '.
|
|
'lint code like "%s" or "%s".',
|
|
$code,
|
|
'E101',
|
|
'W291'));
|
|
}
|
|
|
|
return $code;
|
|
}
|
|
|
|
}
|