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/sass | |
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/sass')
-rw-r--r-- | ale_linters/sass/sasslint.vim (renamed from ale_linters/sass/sassLint.vim) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ale_linters/sass/sassLint.vim b/ale_linters/sass/sasslint.vim index fee50162..278ba997 100644 --- a/ale_linters/sass/sassLint.vim +++ b/ale_linters/sass/sasslint.vim @@ -1,14 +1,14 @@ " Author: KabbAmine - https://github.com/KabbAmine -if exists('g:loaded_ale_linters_sass_sassLint') +if exists('g:loaded_ale_linters_sass_sasslint') finish endif -let g:loaded_ale_linters_sass_sassLint = 1 +let g:loaded_ale_linters_sass_sasslint = 1 call ALEAddLinter('sass', { \ 'name': 'sassLint', \ 'executable': 'sass-lint', \ 'command': g:ale#util#stdin_wrapper . ' .sass sass-lint -v -q -f compact', -\ 'callback': 'ale_linters#css#csslint#Handle', +\ 'callback': 'ale#handlers#HandleCSSLintFormat', \}) |