Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15436994
D10741.id31316.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
D10741.id31316.diff
View Options
diff --git a/src/lint/linter/ArcanistSCSSLintLinter.php b/src/lint/linter/ArcanistSCSSLintLinter.php
new file mode 100644
--- /dev/null
+++ b/src/lint/linter/ArcanistSCSSLintLinter.php
@@ -0,0 +1,120 @@
+<?php
+
+final class ArcanistSCSSLintLinter extends ArcanistExternalLinter {
+
+ private $config;
+
+ public function getInfoName() {
+ return 'SCSS-Lint';
+ }
+
+ public function getInfoURI() {
+ return 'https://github.com/brigade/scss-lint';
+ }
+
+ public function getInfoDescription() {
+ return pht(
+ '%s is a tool to help keep your SCSS files clean and readable.',
+ 'SCSS-Lint');
+ }
+
+ public function getLinterName() {
+ return 'SCSS';
+ }
+
+ public function getLinterConfigurationName() {
+ return 'scss-lint';
+ }
+
+ public function getDefaultBinary() {
+ return 'scss-lint';
+ }
+
+ public function getVersion() {
+ list($stdout) = execx('%C --version', $this->getExecutableCommand());
+
+ $matches = array();
+ if (preg_match('/^scss-lint\s(?P<version>\d+\.\d+\.\d+)$/', $stdout,
+ $matches)) {
+ return $matches['version'];
+ } else {
+ return false;
+ }
+ }
+
+ public function getInstallInstructions() {
+ return pht(
+ 'Install %s using `%s`.',
+ 'SCSS-Lint',
+ 'gem install scss_lint');
+ }
+
+ protected function getMandatoryFlags() {
+ $options = array(
+ '--format=JSON',
+ );
+
+ if ($this->config) {
+ $options[] = '--config='.$this->config;
+ }
+
+ return $options;
+ }
+
+ public function getLinterConfigurationOptions() {
+ $options = array(
+ 'scss-lint.config' => array(
+ 'type' => 'optional string',
+ 'help' => pht('A custom configuration file.'),
+ ),
+ );
+
+ return $options + parent::getLinterConfigurationOptions();
+ }
+
+ public function setLinterConfigurationValue($key, $value) {
+ switch ($key) {
+ case 'scss-lint.config':
+ $this->config = $value;
+ return;
+ }
+
+ return parent::setLinterConfigurationValue($key, $value);
+ }
+
+ protected function parseLinterOutput($path, $err, $stdout, $stderr) {
+ $results = phutil_json_decode($stdout);
+ $messages = array();
+
+ foreach ($results as $path => $offenses) {
+ foreach ($offenses as $offense) {
+ $message = id(new ArcanistLintMessage())
+ ->setPath($path)
+ ->setLine($offense['line'])
+ ->setChar($offense['column'])
+ ->setCode($offense['linter'])
+ ->setSeverity($this->getArcSeverity($offense['severity']))
+ ->setName($this->getLinterName())
+ ->setDescription($offense['reason']);
+
+ $messages[] = $message;
+ }
+ }
+
+ return $messages;
+ }
+
+ private function getArcSeverity($severity) {
+ switch ($severity) {
+ case 'warning':
+ return ArcanistLintSeverity::SEVERITY_WARNING;
+
+ case 'error':
+ return ArcanistLintSeverity::SEVERITY_ERROR;
+
+ default:
+ return ArcanistLintSeverity::SEVERITY_ADVICE;
+ }
+ }
+
+}
diff --git a/src/lint/linter/__tests__/ArcanistSCSSLintLinterTestCase.php b/src/lint/linter/__tests__/ArcanistSCSSLintLinterTestCase.php
new file mode 100644
--- /dev/null
+++ b/src/lint/linter/__tests__/ArcanistSCSSLintLinterTestCase.php
@@ -0,0 +1,10 @@
+<?php
+
+final class ArcanistSCSSLintLinterTestCase
+ extends ArcanistExternalLinterTestCase {
+
+ public function testSCSSLint() {
+ $this->executeTestsInDirectory(dirname(__FILE__).'/scss-lint/');
+ }
+
+}
diff --git a/src/lint/linter/__tests__/scss-lint/no_errors.lint-test.scss b/src/lint/linter/__tests__/scss-lint/no_errors.lint-test.scss
new file mode 100644
--- /dev/null
+++ b/src/lint/linter/__tests__/scss-lint/no_errors.lint-test.scss
@@ -0,0 +1,4 @@
+.module {
+ color: #fff;
+}
+~~~~~~~~~
diff --git a/src/lint/linter/__tests__/scss-lint/warning.lint-test.scss b/src/lint/linter/__tests__/scss-lint/warning.lint-test.scss
new file mode 100644
--- /dev/null
+++ b/src/lint/linter/__tests__/scss-lint/warning.lint-test.scss
@@ -0,0 +1,5 @@
+.module {
+ border: none;
+}
+~~~~~~~~~
+warning:2:3
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Mar 26, 4:54 PM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7551452
Default Alt Text
D10741.id31316.diff (4 KB)
Attached To
Mode
D10741: Added SCSS-Lint linter
Attached
Detach File
Event Timeline
Log In to Comment