mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 08:52:39 +01:00
[lint] Add HLint-based Haskell linter
Summary: This adds a lint engine for `hlint`, which is the standard and most general Haskell lint tool around these days. Signed-off-by: Austin Seipp <aseipp@pobox.com> Test Plan: Install `hlint`, and run `arc unit`. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin Projects: #arcanist Differential Revision: https://secure.phabricator.com/D10250
This commit is contained in:
parent
e9c80de73c
commit
4c0edd296e
6 changed files with 134 additions and 0 deletions
|
@ -83,6 +83,8 @@ phutil_register_library_map(array(
|
|||
'ArcanistGitHookPreReceiveWorkflow' => 'workflow/ArcanistGitHookPreReceiveWorkflow.php',
|
||||
'ArcanistGoLintLinter' => 'lint/linter/ArcanistGoLintLinter.php',
|
||||
'ArcanistGoLintLinterTestCase' => 'lint/linter/__tests__/ArcanistGoLintLinterTestCase.php',
|
||||
'ArcanistHLintLinter' => 'lint/linter/ArcanistHLintLinter.php',
|
||||
'ArcanistHLintLinterTestCase' => 'lint/linter/__tests__/ArcanistHLintLinterTestCase.php',
|
||||
'ArcanistHelpWorkflow' => 'workflow/ArcanistHelpWorkflow.php',
|
||||
'ArcanistHgClientChannel' => 'hgdaemon/ArcanistHgClientChannel.php',
|
||||
'ArcanistHgProxyClient' => 'hgdaemon/ArcanistHgProxyClient.php',
|
||||
|
@ -273,6 +275,8 @@ phutil_register_library_map(array(
|
|||
'ArcanistGitHookPreReceiveWorkflow' => 'ArcanistWorkflow',
|
||||
'ArcanistGoLintLinter' => 'ArcanistExternalLinter',
|
||||
'ArcanistGoLintLinterTestCase' => 'ArcanistArcanistLinterTestCase',
|
||||
'ArcanistHLintLinter' => 'ArcanistExternalLinter',
|
||||
'ArcanistHLintLinterTestCase' => 'ArcanistArcanistLinterTestCase',
|
||||
'ArcanistHelpWorkflow' => 'ArcanistWorkflow',
|
||||
'ArcanistHgClientChannel' => 'PhutilProtocolChannel',
|
||||
'ArcanistHgServerChannel' => 'PhutilProtocolChannel',
|
||||
|
|
111
src/lint/linter/ArcanistHLintLinter.php
Normal file
111
src/lint/linter/ArcanistHLintLinter.php
Normal file
|
@ -0,0 +1,111 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Calls `hlint` and parses its results.
|
||||
*/
|
||||
final class ArcanistHLintLinter extends ArcanistExternalLinter {
|
||||
|
||||
public function getInfoName() {
|
||||
return 'HLint';
|
||||
}
|
||||
|
||||
public function getInfoURI() {
|
||||
return 'https://github.com/ndmitchell/hlint';
|
||||
}
|
||||
|
||||
public function getInfoDescription() {
|
||||
return pht('HLint is a linter for Haskell code.');
|
||||
}
|
||||
|
||||
public function getLinterName() {
|
||||
return 'HLINT';
|
||||
}
|
||||
|
||||
public function getLinterConfigurationName() {
|
||||
return 'hlint';
|
||||
}
|
||||
|
||||
public function getDefaultBinary() {
|
||||
return 'hlint';
|
||||
}
|
||||
|
||||
public function getInstallInstructions() {
|
||||
return pht('Install hlint with `cabal install hlint`.');
|
||||
}
|
||||
|
||||
public function supportsReadDataFromStdin() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public function getReadDataFromStdinFilename() {
|
||||
return '-';
|
||||
}
|
||||
|
||||
public function shouldExpectCommandErrors() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public function getMandatoryFlags() {
|
||||
return array('--json');
|
||||
}
|
||||
|
||||
public function getVersion() {
|
||||
list($stdout, $stderr) = execx(
|
||||
'%C --version', $this->getExecutableCommand());
|
||||
|
||||
$matches = null;
|
||||
if (preg_match('@HLint v(.*),@', $stdout, $matches)) {
|
||||
return $matches[1];
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
protected function parseLinterOutput($path, $err, $stdout, $stderr) {
|
||||
|
||||
$json = phutil_json_decode($stdout);
|
||||
$messages = array();
|
||||
foreach ($json as $fix) {
|
||||
if ($fix === null) {
|
||||
return;
|
||||
}
|
||||
|
||||
$message = new ArcanistLintMessage();
|
||||
$message->setCode($this->getLinterName());
|
||||
$message->setPath($path);
|
||||
$message->setLine($fix['startLine']);
|
||||
$message->setChar($fix['startColumn']);
|
||||
$message->setName($fix['hint']);
|
||||
$message->setOriginalText($fix['from']);
|
||||
$message->setReplacementText($fix['to']);
|
||||
|
||||
/* Some improvements may slightly change semantics, so attach
|
||||
all necessary notes too. */
|
||||
$notes = '';
|
||||
foreach ($fix['note'] as $note) {
|
||||
$notes .= ' **NOTE**: '.trim($note, '"').'.';
|
||||
}
|
||||
|
||||
$message->setDescription(
|
||||
pht(
|
||||
'In module `%s`, declaration `%s`.%s',
|
||||
$fix['module'], $fix['decl'], $notes));
|
||||
|
||||
switch ($fix['severity']) {
|
||||
case 'Error':
|
||||
$message->setSeverity(ArcanistLintSeverity::SEVERITY_ERROR);
|
||||
break;
|
||||
case 'Warning':
|
||||
$message->setSeverity(ArcanistLintSeverity::SEVERITY_WARNING);
|
||||
break;
|
||||
default:
|
||||
$message->setSeverity(ArcanistLintSeverity::SEVERITY_ADVICE);
|
||||
break;
|
||||
}
|
||||
|
||||
$messages[] = $message;
|
||||
}
|
||||
|
||||
return $messages;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
final class ArcanistHLintLinterTestCase extends ArcanistArcanistLinterTestCase {
|
||||
public function testHlintLinter() {
|
||||
$this->executeTestsInDirectory(
|
||||
dirname(__FILE__).'/hlint/',
|
||||
new ArcanistHLintLinter());
|
||||
}
|
||||
}
|
3
src/lint/linter/__tests__/hlint/01_warn_null.lint-test
Normal file
3
src/lint/linter/__tests__/hlint/01_warn_null.lint-test
Normal file
|
@ -0,0 +1,3 @@
|
|||
f xs = length xs == 0
|
||||
~~~~~~~~~~
|
||||
warning:1:8
|
5
src/lint/linter/__tests__/hlint/02_err_eta.lint-test
Normal file
5
src/lint/linter/__tests__/hlint/02_err_eta.lint-test
Normal file
|
@ -0,0 +1,5 @@
|
|||
f x = x
|
||||
|
||||
test x = f x
|
||||
~~~~~~~~~~
|
||||
error:3:1
|
2
src/lint/linter/__tests__/hlint/03_no_err.lint-test
Normal file
2
src/lint/linter/__tests__/hlint/03_no_err.lint-test
Normal file
|
@ -0,0 +1,2 @@
|
|||
main = map (f . g) xs
|
||||
~~~~~~~~~~
|
Loading…
Reference in a new issue