diff options
author | Alex Masterov <alex.masterow@gmail.com> | 2017-02-12 09:25:40 +0300 |
---|---|---|
committer | Alex Masterov <alex.masterow@gmail.com> | 2017-02-12 09:25:40 +0300 |
commit | 4e082b9217e95c442bc3fab1a7ea55a26ef8703e (patch) | |
tree | c4362ae374120734c43a6851d53f92c91ed78ed5 /ale_linters/css/stylelint.vim | |
parent | 820896315ddef670e1e5283ee317025562fe2015 (diff) | |
download | ale-4e082b9217e95c442bc3fab1a7ea55a26ef8703e.zip |
Add stylelint option to pass in more options
Diffstat (limited to 'ale_linters/css/stylelint.vim')
-rw-r--r-- | ale_linters/css/stylelint.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ale_linters/css/stylelint.vim b/ale_linters/css/stylelint.vim index e138d6d0..ef496302 100644 --- a/ale_linters/css/stylelint.vim +++ b/ale_linters/css/stylelint.vim @@ -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 |