mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/ale/ale_linters/css/stylelint.vim

20 lines
699 B
VimL
Raw Normal View History

" Author: diartyz <diartyz@gmail.com>
call ale#Set('css_stylelint_executable', 'stylelint')
call ale#Set('css_stylelint_options', '')
2018-06-14 06:31:12 -04:00
call ale#Set('css_stylelint_use_global', get(g:, 'ale_use_global_executables', 0))
function! ale_linters#css#stylelint#GetCommand(buffer) abort
2018-08-25 12:13:42 -04:00
return '%e ' . ale#Pad(ale#Var(a:buffer, 'css_stylelint_options'))
\ . ' --stdin-filename %s'
endfunction
call ale#linter#Define('css', {
\ 'name': 'stylelint',
2019-03-08 06:04:56 -05:00
\ 'executable': {b -> ale#node#FindExecutable(b, 'css_stylelint', [
2018-08-25 12:13:42 -04:00
\ 'node_modules/.bin/stylelint',
2019-03-08 06:04:56 -05:00
\ ])},
\ 'command': function('ale_linters#css#stylelint#GetCommand'),
\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
\})