2016-12-06 13:14:14 +00:00
|
|
|
" Author: diartyz <diartyz@gmail.com>
|
|
|
|
|
2017-05-27 16:11:03 +00:00
|
|
|
call ale#Set('scss_stylelint_executable', 'stylelint')
|
2018-09-13 11:51:33 +00:00
|
|
|
call ale#Set('scss_stylelint_options', '')
|
2018-04-09 18:11:20 +00:00
|
|
|
call ale#Set('scss_stylelint_use_global', get(g:, 'ale_use_global_executables', 0))
|
2016-12-22 11:39:01 +00:00
|
|
|
|
2018-09-13 11:51:33 +00:00
|
|
|
function! ale_linters#scss#stylelint#GetCommand(buffer) abort
|
|
|
|
return '%e ' . ale#Pad(ale#Var(a:buffer, 'scss_stylelint_options'))
|
|
|
|
\ . ' --stdin-filename %s'
|
|
|
|
endfunction
|
|
|
|
|
2016-12-06 13:14:14 +00:00
|
|
|
call ale#linter#Define('scss', {
|
|
|
|
\ 'name': 'stylelint',
|
2024-01-14 11:43:31 +00:00
|
|
|
\ 'output_stream': 'both',
|
2021-05-26 21:43:30 +00:00
|
|
|
\ 'executable': {b -> ale#path#FindExecutable(b, 'scss_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#scss#stylelint#GetCommand'),
|
2017-04-24 21:27:18 +00:00
|
|
|
\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
|
2016-12-06 13:14:14 +00:00
|
|
|
\})
|