diff options
author | w0rp <devw0rp@gmail.com> | 2017-04-16 01:24:08 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-04-16 01:24:08 +0100 |
commit | e97dada261c4a69f43c5a6c34d349ad6246fe34c (patch) | |
tree | bbaf8aec8ec0474251bdd3e183eb93d06d80c792 /ale_linters/scss | |
parent | e80116cee03af66bb229c3f570f0b2f244f0a197 (diff) | |
download | ale-e97dada261c4a69f43c5a6c34d349ad6246fe34c.zip |
#427 Implement buffer variable overrides for all linter options
Diffstat (limited to 'ale_linters/scss')
-rw-r--r-- | ale_linters/scss/scsslint.vim | 2 | ||||
-rw-r--r-- | ale_linters/scss/stylelint.vim | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ale_linters/scss/scsslint.vim b/ale_linters/scss/scsslint.vim index bc02e931..34db37ea 100644 --- a/ale_linters/scss/scsslint.vim +++ b/ale_linters/scss/scsslint.vim @@ -15,7 +15,7 @@ function! ale_linters#scss#scsslint#Handle(buffer, lines) abort continue endif - if !g:ale_warn_about_trailing_whitespace && l:match[4] =~# '^TrailingWhitespace' + if g:ale_warn_about_trailing_whitespace && l:match[4] =~# '^TrailingWhitespace' " Skip trailing whitespace warnings if that option is on. continue endif 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 |