Add stylelint option to pass in more options

This commit is contained in:
Alex Masterov
2017-02-12 09:25:40 +03:00
parent 820896315d
commit 4e082b9217
2 changed files with 10 additions and 0 deletions

View File

@@ -3,6 +3,9 @@
let g:ale_css_stylelint_executable =
\ get(g:, 'ale_css_stylelint_executable', 'stylelint')
let g:ale_css_stylelint_options =
\ get(g:, 'ale_css_stylelint_options', '')
let g:ale_css_stylelint_use_global =
\ get(g:, 'ale_css_stylelint_use_global', 0)
@@ -20,6 +23,7 @@ endfunction
function! ale_linters#css#stylelint#GetCommand(buffer) abort
return ale_linters#css#stylelint#GetExecutable(a:buffer)
\ . ' ' . g:ale_css_stylelint_options
\ . ' --stdin-filename %s'
endfunction