diff options
author | w0rp <devw0rp@gmail.com> | 2016-12-06 13:26:06 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2016-12-06 13:26:06 +0000 |
commit | aee339f4015f4c492f8087d11736a283d4eff027 (patch) | |
tree | a44e4dce4c4188a27e898f46f8f3cd8d38736db8 | |
parent | d5c626667e5aa881bf4ed0543697ecf46c0ac2f2 (diff) | |
download | ale-aee339f4015f4c492f8087d11736a283d4eff027.zip |
Document the new stylelint linter
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | doc/ale.txt | 6 |
2 files changed, 6 insertions, 6 deletions
@@ -55,7 +55,7 @@ name. That seems to be the fairest way to arrange this table. | C++ (filetype cpp) | [cppcheck] (http://cppcheck.sourceforge.net), [gcc](https://gcc.gnu.org/)| | Chef | [foodcritic](http://www.foodcritic.io/) | | CoffeeScript | [coffee](http://coffeescript.org/), [coffeelint](https://www.npmjs.com/package/coffeelint) | -| CSS | [csslint](http://csslint.net/) | +| CSS | [csslint](http://csslint.net/), [stylelint](https://github.com/stylelint/stylelint) | | Cython (pyrex filetype) | [cython](http://cython.org/) | | D | [dmd](https://dlang.org/dmd-linux.html)^ | | Elixir | [credo](https://github.com/rrrene/credo) | @@ -76,8 +76,8 @@ name. That seems to be the fairest way to arrange this table. | Puppet | [puppet](https://puppet.com), [puppet-lint](https://puppet-lint.com) | | Python | [flake8](http://flake8.pycqa.org/en/latest/), [pylint](https://www.pylint.org/) | | Ruby | [rubocop](https://github.com/bbatsov/rubocop) | -| SASS | [sass-lint](https://www.npmjs.com/package/sass-lint) | -| SCSS | [sass-lint](https://www.npmjs.com/package/sass-lint), [scss-lint](https://github.com/brigade/scss-lint) | +| SASS | [sass-lint](https://www.npmjs.com/package/sass-lint), [stylelint](https://github.com/stylelint/stylelint) | +| SCSS | [sass-lint](https://www.npmjs.com/package/sass-lint), [scss-lint](https://github.com/brigade/scss-lint), [stylelint](https://github.com/stylelint/stylelint) | | Scala | [scalac](http://scala-lang.org) | | Tex | [proselint](http://proselint.com/) | | Text | [proselint](http://proselint.com/) | diff --git a/doc/ale.txt b/doc/ale.txt index eae5c286..573164d3 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -67,7 +67,7 @@ The following languages and tools are supported. * C++ (filetype cpp): 'cppcheck', 'gcc' * Chef: 'foodcritic' * CoffeeScript: 'coffee', 'coffelint' -* CSS: 'csslint' +* CSS: 'csslint', 'stylelint' * Cython (pyrex filetype): 'cython' * D: 'dmd' * Elixir: 'credo' @@ -88,8 +88,8 @@ The following languages and tools are supported. * Puppet: 'puppet', 'puppet-lint' * Python: 'flake8', 'pylint' * Ruby: 'rubocop' -* SASS: 'sasslint' -* SCSS: 'sasslint', 'scsslint' +* SASS: 'sasslint', 'stylelint' +* SCSS: 'sasslint', 'scsslint', 'stylelint' * Scala: 'scalac' * TypeScript: 'tslint', 'typecheck' * Verilog: 'iverilog', 'verilator' |