mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-12-23 14:00:55 +01:00
add css lint
This commit is contained in:
parent
fbcd686e18
commit
395c15e630
2 changed files with 125 additions and 0 deletions
|
@ -48,6 +48,9 @@ final class ComprehensiveLintEngine extends ArcanistLintEngine {
|
||||||
$linters[] = id(new ArcanistJSHintLinter())
|
$linters[] = id(new ArcanistJSHintLinter())
|
||||||
->setPaths(preg_grep('/\.js$/', $paths));
|
->setPaths(preg_grep('/\.js$/', $paths));
|
||||||
|
|
||||||
|
$linters[] = id(new ArcanistCSSLintLinter())
|
||||||
|
->setPaths(preg_grep('/\.css$/', $paths));
|
||||||
|
|
||||||
return $linters;
|
return $linters;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
122
src/lint/linter/ArcanistCSSLintLinter.php
Normal file
122
src/lint/linter/ArcanistCSSLintLinter.php
Normal file
|
@ -0,0 +1,122 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Uses "CSS lint" to detect checkstyle errors in css code.
|
||||||
|
* To use this linter, you must install CSS lint.
|
||||||
|
* ##npm install csslint -g## (don't forget the -g flag or NPM will install
|
||||||
|
* the package locally).
|
||||||
|
*
|
||||||
|
* Based on ArcanistPhpcsLinter.php
|
||||||
|
*
|
||||||
|
* lint.cssling.options
|
||||||
|
* lint.csslint.bin
|
||||||
|
*
|
||||||
|
* @group linter
|
||||||
|
*/
|
||||||
|
final class ArcanistCSSLintLinter extends ArcanistLinter {
|
||||||
|
|
||||||
|
private $reports;
|
||||||
|
|
||||||
|
public function getLinterName() {
|
||||||
|
return 'CSSLint';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getLintSeverityMap() {
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getLintNameMap() {
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getCSSLintOptions() {
|
||||||
|
$working_copy = $this->getEngine()->getWorkingCopy();
|
||||||
|
|
||||||
|
$options = $working_copy->getConfig('lint.csslint.options');
|
||||||
|
|
||||||
|
return $options;
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getCSSLintPath() {
|
||||||
|
$working_copy = $this->getEngine()->getWorkingCopy();
|
||||||
|
$bin = $working_copy->getConfig('lint.csslint.bin');
|
||||||
|
|
||||||
|
if ($bin === null) {
|
||||||
|
$bin = 'csslint';
|
||||||
|
}
|
||||||
|
|
||||||
|
return $bin;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function willLintPaths(array $paths) {
|
||||||
|
$csslint_bin = $this->getCSSLintPath();
|
||||||
|
$csslint_options = $this->getCSSLintOptions();
|
||||||
|
$futures = array();
|
||||||
|
|
||||||
|
foreach ($paths as $path) {
|
||||||
|
$filepath = $this->getEngine()->getFilePathOnDisk($path);
|
||||||
|
$this->reports[$path] = new TempFile();
|
||||||
|
$futures[$path] = new ExecFuture('%C %C --format=lint-xml >%s %s',
|
||||||
|
$csslint_bin,
|
||||||
|
$csslint_options,
|
||||||
|
$this->reports[$path],
|
||||||
|
$filepath);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (Futures($futures)->limit(8) as $path => $future) {
|
||||||
|
$this->results[$path] = $future->resolve();
|
||||||
|
}
|
||||||
|
|
||||||
|
libxml_use_internal_errors(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function lintPath($path) {
|
||||||
|
list($rc, $stdout) = $this->results[$path];
|
||||||
|
|
||||||
|
$report = Filesystem::readFile($this->reports[$path]);
|
||||||
|
|
||||||
|
if ($report) {
|
||||||
|
$report_dom = new DOMDocument();
|
||||||
|
libxml_clear_errors();
|
||||||
|
$report_dom->loadXML($report);
|
||||||
|
}
|
||||||
|
if (!$report || libxml_get_errors()) {
|
||||||
|
throw new ArcanistUsageException('CSS Linter failed to load ' .
|
||||||
|
'reporting file. Something happened when running csslint. ' .
|
||||||
|
"Output:\n$stdout" .
|
||||||
|
"\nTry running lint with --trace flag to get more details.");
|
||||||
|
}
|
||||||
|
|
||||||
|
$files = $report_dom->getElementsByTagName('file');
|
||||||
|
foreach ($files as $file) {
|
||||||
|
foreach ($file->childNodes as $child) {
|
||||||
|
if (!($child instanceof DOMElement)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$data = $this->getData($path);
|
||||||
|
$lines = explode("\n", $data);
|
||||||
|
$name = $this->getLinterName() . ' - ' . $child->getAttribute('reason');
|
||||||
|
$severity = $child->getAttribute('severity') == 'warning' ?
|
||||||
|
ArcanistLintSeverity::SEVERITY_WARNING
|
||||||
|
: ArcanistLintSeverity::SEVERITY_ERROR;
|
||||||
|
|
||||||
|
$message = new ArcanistLintMessage();
|
||||||
|
$message->setPath($path);
|
||||||
|
$message->setLine($child->getAttribute('line'));
|
||||||
|
$message->setChar($child->getAttribute('char'));
|
||||||
|
$message->setCode($child->getAttribute('severity'));
|
||||||
|
$message->setName($name);
|
||||||
|
$message->setDescription($child->getAttribute('reason')."\nEvidence:".$child->getAttribute('evidence'));
|
||||||
|
$message->setSeverity($severity);
|
||||||
|
|
||||||
|
if($child->hasAttribute('line')){
|
||||||
|
$line = $lines[$child->getAttribute('line') - 1];
|
||||||
|
$text = substr($line, $child->getAttribute('char') - 1);
|
||||||
|
$message->setOriginalText($text);
|
||||||
|
}
|
||||||
|
$this->addLintMessage($message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue