From e97dada261c4a69f43c5a6c34d349ad6246fe34c Mon Sep 17 00:00:00 2001 From: w0rp Date: Sun, 16 Apr 2017 01:24:08 +0100 Subject: #427 Implement buffer variable overrides for all linter options --- ale_linters/css/stylelint.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ale_linters/css/stylelint.vim') diff --git a/ale_linters/css/stylelint.vim b/ale_linters/css/stylelint.vim index ef496302..ffda0498 100644 --- a/ale_linters/css/stylelint.vim +++ b/ale_linters/css/stylelint.vim @@ -10,20 +10,20 @@ let g:ale_css_stylelint_use_global = \ get(g:, 'ale_css_stylelint_use_global', 0) function! ale_linters#css#stylelint#GetExecutable(buffer) abort - if g:ale_css_stylelint_use_global - return g:ale_css_stylelint_executable + if ale#Var(a:buffer, 'css_stylelint_use_global') + return ale#Var(a:buffer, 'css_stylelint_executable') endif return ale#util#ResolveLocalPath( \ a:buffer, \ 'node_modules/.bin/stylelint', - \ g:ale_css_stylelint_executable + \ ale#Var(a:buffer, 'css_stylelint_executable') \) endfunction function! ale_linters#css#stylelint#GetCommand(buffer) abort return ale_linters#css#stylelint#GetExecutable(a:buffer) - \ . ' ' . g:ale_css_stylelint_options + \ . ' ' . ale#Var(a:buffer, 'css_stylelint_options') \ . ' --stdin-filename %s' endfunction -- cgit v1.2.3