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

20 lines
707 B
VimL
Raw Normal View History

" Author: diartyz <diartyz@gmail.com>
call ale#Set('scss_stylelint_executable', 'stylelint')
2018-09-30 16:58:57 -04:00
call ale#Set('scss_stylelint_options', '')
2018-06-14 06:31:12 -04:00
call ale#Set('scss_stylelint_use_global', get(g:, 'ale_use_global_executables', 0))
2018-09-30 16:58:57 -04:00
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',
2021-05-31 16:30:26 -04:00
\ 'executable': {b -> ale#path#FindExecutable(b, 'scss_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#scss#stylelint#GetCommand'),
\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
\})