mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 04:34:25 +08:00
* Adding --no-color flag to sass stylelint * Adding --no-color to all stylelint args * Adding --no-color expectation to stylelint tests * Properly handling SyntaxError for stylelint; adding corresponding test * Fixing CSS stylelint parameters and adding regression test
15 lines
499 B
VimL
15 lines
499 B
VimL
" Author: diartyz <diartyz@gmail.com>
|
|
|
|
call ale#Set('sass_stylelint_executable', 'stylelint')
|
|
call ale#Set('sass_stylelint_use_global', get(g:, 'ale_use_global_executables', 0))
|
|
|
|
call ale#linter#Define('sass', {
|
|
\ 'name': 'stylelint',
|
|
\ 'output_stream': 'both',
|
|
\ 'executable': {b -> ale#path#FindExecutable(b, 'sass_stylelint', [
|
|
\ 'node_modules/.bin/stylelint',
|
|
\ ])},
|
|
\ 'command': '%e --no-color --stdin-filename %s',
|
|
\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
|
|
\})
|