2016-12-06 08:14:14 -05:00
|
|
|
" Author: diartyz <diartyz@gmail.com>
|
|
|
|
|
2017-05-27 12:11:03 -04:00
|
|
|
call ale#Set('sass_stylelint_executable', 'stylelint')
|
2018-04-09 14:11:20 -04:00
|
|
|
call ale#Set('sass_stylelint_use_global', get(g:, 'ale_use_global_executables', 0))
|
2016-12-22 06:39:01 -05:00
|
|
|
|
2016-12-06 08:14:14 -05:00
|
|
|
call ale#linter#Define('sass', {
|
|
|
|
\ 'name': 'stylelint',
|
2018-08-02 18:44:12 -04:00
|
|
|
\ 'executable_callback': ale#node#FindExecutableFunc('sass_stylelint', [
|
|
|
|
\ 'node_modules/.bin/stylelint',
|
|
|
|
\ ]),
|
|
|
|
\ 'command': '%e --stdin-filename %s',
|
2017-04-24 17:27:18 -04:00
|
|
|
\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
|
2016-12-06 08:14:14 -05:00
|
|
|
\})
|