mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
Since [version 13.6.0](804bb24c75/CHANGELOG.md (L654)),
following [PR 4799](https://github.com/stylelint/stylelint/pull/4799)
`stylelint` errors are sent to `stderr`. Previous versions where sending
errors to `stdout`.
21 lines
736 B
VimL
21 lines
736 B
VimL
" Author: diartyz <diartyz@gmail.com>
|
|
|
|
call ale#Set('scss_stylelint_executable', 'stylelint')
|
|
call ale#Set('scss_stylelint_options', '')
|
|
call ale#Set('scss_stylelint_use_global', get(g:, 'ale_use_global_executables', 0))
|
|
|
|
function! ale_linters#scss#stylelint#GetCommand(buffer) abort
|
|
return '%e ' . ale#Pad(ale#Var(a:buffer, 'scss_stylelint_options'))
|
|
\ . ' --stdin-filename %s'
|
|
endfunction
|
|
|
|
call ale#linter#Define('scss', {
|
|
\ 'name': 'stylelint',
|
|
\ 'output_stream': 'both',
|
|
\ 'executable': {b -> ale#path#FindExecutable(b, 'scss_stylelint', [
|
|
\ 'node_modules/.bin/stylelint',
|
|
\ ])},
|
|
\ 'command': function('ale_linters#scss#stylelint#GetCommand'),
|
|
\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
|
|
\})
|