diff options
author | w0rp <devw0rp@gmail.com> | 2016-10-03 23:24:18 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2016-10-03 23:24:18 +0100 |
commit | 65f5e15af5d672aec3f538ebd7ce9f2c7bac7e9f (patch) | |
tree | 58668f82413364af6e0539b0276df476801286d9 /ale_linters/scss | |
parent | 406e5db35215c74a025159d4ffdffaffc535be93 (diff) | |
download | ale-65f5e15af5d672aec3f538ebd7ce9f2c7bac7e9f.zip |
Rename the SASS files to follow the convention from other files, and move the function for handling CSSLint style output into the handlers file.
Diffstat (limited to 'ale_linters/scss')
-rw-r--r-- | ale_linters/scss/sasslint.vim (renamed from ale_linters/scss/sassLint.vim) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ale_linters/scss/sassLint.vim b/ale_linters/scss/sasslint.vim index b49728fb..a02f7ee6 100644 --- a/ale_linters/scss/sassLint.vim +++ b/ale_linters/scss/sasslint.vim @@ -1,14 +1,14 @@ " Author: KabbAmine - https://github.com/KabbAmine -if exists('g:loaded_ale_linters_scss_sassLint') +if exists('g:loaded_ale_linters_scss_sasslint') finish endif -let g:loaded_ale_linters_scss_sassLint = 1 +let g:loaded_ale_linters_scss_sasslint = 1 call ALEAddLinter('scss', { \ 'name': 'sassLint', \ 'executable': 'sass-lint', \ 'command': g:ale#util#stdin_wrapper . ' .scss sass-lint -v -q -f compact', -\ 'callback': 'ale_linters#css#csslint#Handle', +\ 'callback': 'ale#handlers#HandleCSSLintFormat', \}) |