mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-10 06:41:04 +01:00
7870e7f2e4
Summary: Ref T2039. Addresses two issues: - Issues a warning for use of config which is deprecated by `.arclint`. - We no longer require an engine to be present for these linters, so `arc linters` doesn't fatal if they aren't configured. Test Plan: - Ran `arc linters` in a repo with no JSHint. - Ran `arc linters` in a repo with junk in .arcconfig and got a warning when it was read. Verified it still took effect. Reviewers: chad, btrahan, joshuaspence Reviewed By: joshuaspence Subscribers: epriestley Maniphest Tasks: T2039 Differential Revision: https://secure.phabricator.com/D9058
137 lines
3.4 KiB
PHP
137 lines
3.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Uses JSHint to detect errors and potential problems in JavaScript code.
|
|
*/
|
|
final class ArcanistJSHintLinter extends ArcanistExternalLinter {
|
|
|
|
public function getInfoName() {
|
|
return 'JSHint';
|
|
}
|
|
|
|
public function getInfoURI() {
|
|
return 'http://www.jshint.com';
|
|
}
|
|
|
|
public function getInfoDescription() {
|
|
return pht(
|
|
'Use `jshint` to detect issues with Javascript source files.');
|
|
}
|
|
|
|
public function getLinterName() {
|
|
return 'JSHint';
|
|
}
|
|
|
|
public function getLinterConfigurationName() {
|
|
return 'jshint';
|
|
}
|
|
|
|
protected function getDefaultMessageSeverity($code) {
|
|
if (preg_match('/^W/', $code)) {
|
|
return ArcanistLintSeverity::SEVERITY_WARNING;
|
|
} else {
|
|
return ArcanistLintSeverity::SEVERITY_ERROR;
|
|
}
|
|
}
|
|
|
|
public function getDefaultBinary() {
|
|
$prefix = $this->getDeprecatedConfiguration('lint.jshint.prefix');
|
|
$bin = $this->getDeprecatedConfiguration('lint.jshint.bin', 'jshint');
|
|
|
|
if ($prefix) {
|
|
return $prefix.'/'.$bin;
|
|
} else {
|
|
return $bin;
|
|
}
|
|
}
|
|
|
|
public function getVersion() {
|
|
list($stdout) = execx('%C --version', $this->getExecutableCommand());
|
|
|
|
$matches = array();
|
|
$regex = '/^jshint v(?P<version>\d+\.\d+\.\d+)$/';
|
|
if (preg_match($regex, $stdout, $matches)) {
|
|
return $matches['version'];
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function getInstallInstructions() {
|
|
return pht('Install JSHint using `npm install -g jshint`.');
|
|
}
|
|
|
|
public function shouldExpectCommandErrors() {
|
|
return true;
|
|
}
|
|
|
|
public function supportsReadDataFromStdin() {
|
|
return true;
|
|
}
|
|
|
|
public function getReadDataFromStdinFilename() {
|
|
return '-';
|
|
}
|
|
|
|
protected function getMandatoryFlags() {
|
|
return array(
|
|
'--reporter='.dirname(realpath(__FILE__)).'/reporter.js',
|
|
);
|
|
}
|
|
|
|
protected function getDefaultFlags() {
|
|
$options = $this->getDeprecatedConfiguration(
|
|
'lint.jshint.options',
|
|
array());
|
|
|
|
$config = $this->getDeprecatedConfiguration('lint.jshint.config');
|
|
if ($config) {
|
|
$options[] = '--config='.$config;
|
|
}
|
|
|
|
return $options;
|
|
}
|
|
|
|
protected function parseLinterOutput($path, $err, $stdout, $stderr) {
|
|
$errors = json_decode($stdout, true);
|
|
|
|
if (!is_array($errors)) {
|
|
// Something went wrong and we can't decode the output. Exit abnormally.
|
|
throw new ArcanistUsageException(
|
|
"JSHint returned unparseable output.\n".
|
|
"stdout:\n\n{$stdout}".
|
|
"stderr:\n\n{$stderr}");
|
|
}
|
|
|
|
$messages = array();
|
|
foreach ($errors as $err) {
|
|
$message = new ArcanistLintMessage();
|
|
$message->setPath($path);
|
|
$message->setLine(idx($err, 'line'));
|
|
$message->setChar(idx($err, 'col'));
|
|
$message->setCode(idx($err, 'code'));
|
|
$message->setName('JSHint'.idx($err, 'code'));
|
|
$message->setDescription(idx($err, 'reason'));
|
|
$message->setSeverity($this->getLintMessageSeverity(idx($err, 'code')));
|
|
$message->setOriginalText(idx($err, 'evidence'));
|
|
|
|
$messages[] = $message;
|
|
}
|
|
|
|
return $messages;
|
|
}
|
|
|
|
protected function getLintCodeFromLinterConfigurationKey($code) {
|
|
if (!preg_match('/^(E|W)\d+$/', $code)) {
|
|
throw new Exception(
|
|
pht(
|
|
'Unrecognized lint message code "%s". Expected a valid JSHint '.
|
|
'lint code like "%s" or "%s".',
|
|
$code,
|
|
'E033',
|
|
'W093'));
|
|
}
|
|
|
|
return $code;
|
|
}
|
|
}
|