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

14 lines
459 B
VimL
Raw Normal View History

" Author: diartyz <diartyz@gmail.com>
call ale#Set('sass_stylelint_executable', 'stylelint')
2018-06-14 06:31:12 -04:00
call ale#Set('sass_stylelint_use_global', get(g:, 'ale_use_global_executables', 0))
call ale#linter#Define('sass', {
\ 'name': 'stylelint',
2021-05-31 16:30:26 -04:00
\ 'executable': {b -> ale#path#FindExecutable(b, 'sass_stylelint', [
2018-08-25 12:13:42 -04:00
\ 'node_modules/.bin/stylelint',
2019-03-08 06:04:56 -05:00
\ ])},
2018-08-25 12:13:42 -04:00
\ 'command': '%e --stdin-filename %s',
\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
\})