summaryrefslogtreecommitdiff
path: root/ale_linters/scss/stylelint.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/scss/stylelint.vim')
-rw-r--r--ale_linters/scss/stylelint.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/ale_linters/scss/stylelint.vim b/ale_linters/scss/stylelint.vim
index 2f5da7c9..2e5d0270 100644
--- a/ale_linters/scss/stylelint.vim
+++ b/ale_linters/scss/stylelint.vim
@@ -7,14 +7,14 @@ let g:ale_scss_stylelint_use_global =
\ get(g:, 'ale_scss_stylelint_use_global', 0)
function! ale_linters#scss#stylelint#GetExecutable(buffer) abort
- if g:ale_scss_stylelint_use_global
- return g:ale_scss_stylelint_executable
+ if ale#Var(a:buffer, 'scss_stylelint_use_global')
+ return ale#Var(a:buffer, 'scss_stylelint_executable')
endif
return ale#util#ResolveLocalPath(
\ a:buffer,
\ 'node_modules/.bin/stylelint',
- \ g:ale_scss_stylelint_executable
+ \ ale#Var(a:buffer, 'scss_stylelint_executable')
\)
endfunction