2016-12-06 08:14:14 -05:00
|
|
|
" Author: diartyz <diartyz@gmail.com>
|
|
|
|
|
2017-05-27 12:11:03 -04:00
|
|
|
call ale#Set('css_stylelint_executable', 'stylelint')
|
|
|
|
call ale#Set('css_stylelint_options', '')
|
2018-04-09 14:11:20 -04:00
|
|
|
call ale#Set('css_stylelint_use_global', get(g:, 'ale_use_global_executables', 0))
|
2016-12-22 06:39:01 -05:00
|
|
|
|
|
|
|
function! ale_linters#css#stylelint#GetCommand(buffer) abort
|
2018-08-02 18:44:12 -04:00
|
|
|
return '%e ' . ale#Pad(ale#Var(a:buffer, 'css_stylelint_options'))
|
2016-12-22 06:39:01 -05:00
|
|
|
\ . ' --stdin-filename %s'
|
|
|
|
endfunction
|
|
|
|
|
2016-12-06 08:14:14 -05:00
|
|
|
call ale#linter#Define('css', {
|
|
|
|
\ 'name': 'stylelint',
|
2018-08-02 18:44:12 -04:00
|
|
|
\ 'executable_callback': ale#node#FindExecutableFunc('css_stylelint', [
|
|
|
|
\ 'node_modules/.bin/stylelint',
|
|
|
|
\ ]),
|
2016-12-22 06:39:01 -05:00
|
|
|
\ 'command_callback': 'ale_linters#css#stylelint#GetCommand',
|
2017-04-24 17:27:18 -04:00
|
|
|
\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
|
2016-12-06 08:14:14 -05:00
|
|
|
\})
|