branch: elpa/flycheck
commit 8188e8320fc43fd15a1e738b55613cc9c3acef9e
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>

    Remove sass/scss-sass-lint checker
    
    sass-lint has been abandoned for over 4 years with no maintainer.
    Users should use sass-stylelint or scss-stylelint instead.
---
 doc/languages.rst | 13 +------------
 flycheck.el       | 18 ------------------
 2 files changed, 1 insertion(+), 30 deletions(-)

diff --git a/doc/languages.rst b/doc/languages.rst
index 73194bfb7c..79dae783db 100644
--- a/doc/languages.rst
+++ b/doc/languages.rst
@@ -1429,10 +1429,7 @@ to view the docstring of the syntax checker.  Likewise, 
you may use
 
 .. supported-language:: Sass/SCSS
 
-   Flycheck checks SASS with `sass/scss-sass-lint` or
-   `sass-stylelint`, falling back to `sass`, and SCSS with `scss-lint`
-   or `scss-stylelint` falling back to `sass/scss-sass-lint` first and
-   then `scss` if neither is available.
+   Flycheck checks SASS with `sass-stylelint` and SCSS with `scss-stylelint`.
 
    .. syntax-checker:: scss-lint
 
@@ -1446,14 +1443,6 @@ to view the docstring of the syntax checker.  Likewise, 
you may use
 
       .. syntax-checker-config-file:: flycheck-scss-lintrc
 
-   .. syntax-checker:: sass/scss-sass-lint
-
-      Syntax-check and lint Sass/SCSS with SASS-Lint_.
-
-      .. _SASS-Lint: https://github.com/sasstools/sass-lint
-
-      .. syntax-checker-config-file:: flycheck-sass-lintrc
-
    .. syntax-checker:: sass-stylelint
 
       Syntax-check and lint Sass with stylelint_.
diff --git a/flycheck.el b/flycheck.el
index a8987cb47c..09dbadce2f 100644
--- a/flycheck.el
+++ b/flycheck.el
@@ -230,7 +230,6 @@
     scss-lint
     sass-stylelint
     scss-stylelint
-    sass/scss-sass-lint
     sh-bash
     sh-posix-dash
     sh-posix-bash
@@ -12241,23 +12240,6 @@ CHECKER and BUFFER are used to construct the error 
objects."
                    :id (plist-get e :id))) errors))
     (json-error nil)))
 
-(flycheck-def-config-file-var flycheck-sass-lintrc sass/scss-sass-lint
-                              ".sass-lint.yml"
-  :package-version '(flycheck . "30"))
-
-(flycheck-define-checker sass/scss-sass-lint
-  "A SASS/SCSS syntax checker using sass-Lint.
-
-See URL `https://github.com/sasstools/sass-lint'."
-  :command ("sass-lint"
-            "--verbose"
-            "--no-exit"
-            "--format" "Checkstyle"
-            (config-file "--config" flycheck-sass-lintrc)
-            source)
-  :error-parser flycheck-parse-checkstyle
-  :modes (sass-mode scss-mode))
-
 (flycheck-define-checker scala
   "A Scala syntax checker using the Scala compiler.
 

Reply via email to