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