summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2018-09-27 16:54:17 +0100
committerGitHub <noreply@github.com>2018-09-27 16:54:17 +0100
commitfd0467f9927d0bf5ee88b157c1978c3b69509460 (patch)
tree3610df20fcaaaab7127fba624c6caa9c855ac5ac /ale_linters
parent947360f714cac48cff1b3e1949b1b66b48be671e (diff)
parent9bbea8b830c57cb572bb01fde1567a447073bd27 (diff)
downloadale-fd0467f9927d0bf5ee88b157c1978c3b69509460.zip
Merge pull request #1917 from jpsouzasilva/fix-stylelint-scss
Support options when using Stylelint with SCSS
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/scss/stylelint.vim8
1 files changed, 7 insertions, 1 deletions
diff --git a/ale_linters/scss/stylelint.vim b/ale_linters/scss/stylelint.vim
index 6d183b4a..2bffa8e1 100644
--- a/ale_linters/scss/stylelint.vim
+++ b/ale_linters/scss/stylelint.vim
@@ -1,13 +1,19 @@
" Author: diartyz <diartyz@gmail.com>
call ale#Set('scss_stylelint_executable', 'stylelint')
+call ale#Set('scss_stylelint_options', '')
call ale#Set('scss_stylelint_use_global', get(g:, 'ale_use_global_executables', 0))
+function! ale_linters#scss#stylelint#GetCommand(buffer) abort
+ return '%e ' . ale#Pad(ale#Var(a:buffer, 'scss_stylelint_options'))
+ \ . ' --stdin-filename %s'
+endfunction
+
call ale#linter#Define('scss', {
\ 'name': 'stylelint',
\ 'executable_callback': ale#node#FindExecutableFunc('scss_stylelint', [
\ 'node_modules/.bin/stylelint',
\ ]),
-\ 'command': '%e --stdin-filename %s',
+\ 'command_callback': 'ale_linters#scss#stylelint#GetCommand',
\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
\})