diff options
author | Oskar Grunning <oskargrunning@gmail.com> | 2018-12-06 19:23:31 +0100 |
---|---|---|
committer | Bjorn Neergaard <bjorn@neersighted.com> | 2018-12-06 11:23:31 -0700 |
commit | 2760cf7018893b42c4ae5c750a7f1d38669aa821 (patch) | |
tree | d87a8e0c0925ce1f61065430100ad65723ad8a0f /autoload | |
parent | dc61d46e2867c485abb6ae761327a8ef036e8098 (diff) | |
download | ale-2760cf7018893b42c4ae5c750a7f1d38669aa821.zip |
refactor sasslint linter (#2077)
Previous implementation required one to have sass-lint globally. This
allows you to have it locally, override the executable and add options.
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/handlers/sasslint.vim | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/autoload/ale/handlers/sasslint.vim b/autoload/ale/handlers/sasslint.vim deleted file mode 100644 index 399bf47c..00000000 --- a/autoload/ale/handlers/sasslint.vim +++ /dev/null @@ -1,8 +0,0 @@ -" Author: KabbAmine - https://github.com/KabbAmine, -" Ben Falconer <ben@falconers.me.uk> - -function! ale#handlers#sasslint#GetCommand(buffer) abort - return ale#path#BufferCdString(a:buffer) - \ . ale#Escape('sass-lint') - \ . ' -v -q -f compact %t' -endfunction |