e149692cc9
subrepo: subdir: "dotfiles/.vim/plugged/ale" merged: "e4b205440" upstream: origin: "https://github.com/dense-analysis/ale.git" branch: "master" commit: "e4b205440" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
13 lines
459 B
VimL
13 lines
459 B
VimL
" Author: diartyz <diartyz@gmail.com>
|
|
|
|
call ale#Set('sass_stylelint_executable', 'stylelint')
|
|
call ale#Set('sass_stylelint_use_global', get(g:, 'ale_use_global_executables', 0))
|
|
|
|
call ale#linter#Define('sass', {
|
|
\ 'name': 'stylelint',
|
|
\ 'executable': {b -> ale#path#FindExecutable(b, 'sass_stylelint', [
|
|
\ 'node_modules/.bin/stylelint',
|
|
\ ])},
|
|
\ 'command': '%e --stdin-filename %s',
|
|
\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
|
|
\})
|