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`.
29 lines
1.0 KiB
VimL
29 lines
1.0 KiB
VimL
" Author: Filipe Kiss <hello@filipekiss.com.br> http://github.com/filipekiss
|
|
|
|
call ale#Set('html_stylelint_executable', 'stylelint')
|
|
call ale#Set('html_stylelint_options', '')
|
|
call ale#Set('html_stylelint_use_global', 0)
|
|
|
|
function! ale_linters#html#stylelint#GetExecutable(buffer) abort
|
|
return ale#path#FindExecutable(a:buffer, 'html_stylelint', [
|
|
\ 'node_modules/.bin/stylelint',
|
|
\])
|
|
endfunction
|
|
|
|
function! ale_linters#html#stylelint#GetCommand(buffer) abort
|
|
let l:executable = ale_linters#html#stylelint#GetExecutable(a:buffer)
|
|
let l:options = ale#Var(a:buffer, 'html_stylelint_options')
|
|
|
|
return ale#Escape(l:executable)
|
|
\ . (!empty(l:options) ? ' ' . l:options : '')
|
|
\ . ' --stdin-filename %s'
|
|
endfunction
|
|
|
|
call ale#linter#Define('html', {
|
|
\ 'name': 'stylelint',
|
|
\ 'output_stream': 'both',
|
|
\ 'executable': function('ale_linters#html#stylelint#GetExecutable'),
|
|
\ 'command': function('ale_linters#html#stylelint#GetCommand'),
|
|
\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
|
|
\})
|