2016-12-06 13:14:14 +00:00
|
|
|
" Author: diartyz <diartyz@gmail.com>
|
|
|
|
|
2016-12-22 11:39:01 +00:00
|
|
|
let g:ale_sass_stylelint_executable =
|
|
|
|
\ get(g:, 'ale_sass_stylelint_executable', 'stylelint')
|
|
|
|
|
|
|
|
let g:ale_sass_stylelint_use_global =
|
|
|
|
\ get(g:, 'ale_sass_stylelint_use_global', 0)
|
|
|
|
|
|
|
|
function! ale_linters#sass#stylelint#GetExecutable(buffer) abort
|
|
|
|
if g:ale_sass_stylelint_use_global
|
|
|
|
return g:ale_sass_stylelint_executable
|
|
|
|
endif
|
|
|
|
|
|
|
|
return ale#util#ResolveLocalPath(
|
|
|
|
\ a:buffer,
|
|
|
|
\ 'node_modules/.bin/stylelint',
|
|
|
|
\ g:ale_sass_stylelint_executable
|
|
|
|
\)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! ale_linters#sass#stylelint#GetCommand(buffer) abort
|
|
|
|
return ale_linters#sass#stylelint#GetExecutable(a:buffer)
|
|
|
|
\ . ' --stdin-filename %s'
|
|
|
|
endfunction
|
|
|
|
|
2016-12-06 13:14:14 +00:00
|
|
|
call ale#linter#Define('sass', {
|
|
|
|
\ 'name': 'stylelint',
|
2016-12-22 11:39:01 +00:00
|
|
|
\ 'executable_callback': 'ale_linters#sass#stylelint#GetExecutable',
|
|
|
|
\ 'command_callback': 'ale_linters#sass#stylelint#GetCommand',
|
2016-12-06 13:14:14 +00:00
|
|
|
\ 'callback': 'ale#handlers#HandleStyleLintFormat',
|
|
|
|
\})
|