summaryrefslogtreecommitdiff
path: root/ale_linters/scss
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/scss')
-rw-r--r--ale_linters/scss/sasslint.vim4
-rw-r--r--ale_linters/scss/stylelint.vim6
2 files changed, 5 insertions, 5 deletions
diff --git a/ale_linters/scss/sasslint.vim b/ale_linters/scss/sasslint.vim
index 8b725ba6..cf13546e 100644
--- a/ale_linters/scss/sasslint.vim
+++ b/ale_linters/scss/sasslint.vim
@@ -22,7 +22,7 @@ endfunction
call ale#linter#Define('scss', {
\ 'name': 'sasslint',
-\ 'executable_callback': 'ale_linters#scss#sasslint#GetExecutable',
-\ 'command_callback': 'ale_linters#scss#sasslint#GetCommand',
+\ 'executable': function('ale_linters#scss#sasslint#GetExecutable'),
+\ 'command': function('ale_linters#scss#sasslint#GetCommand'),
\ 'callback': 'ale#handlers#css#HandleCSSLintFormat',
\})
diff --git a/ale_linters/scss/stylelint.vim b/ale_linters/scss/stylelint.vim
index 2bffa8e1..b5b21536 100644
--- a/ale_linters/scss/stylelint.vim
+++ b/ale_linters/scss/stylelint.vim
@@ -11,9 +11,9 @@ endfunction
call ale#linter#Define('scss', {
\ 'name': 'stylelint',
-\ 'executable_callback': ale#node#FindExecutableFunc('scss_stylelint', [
+\ 'executable': {b -> ale#node#FindExecutable(b, 'scss_stylelint', [
\ 'node_modules/.bin/stylelint',
-\ ]),
-\ 'command_callback': 'ale_linters#scss#stylelint#GetCommand',
+\ ])},
+\ 'command': function('ale_linters#scss#stylelint#GetCommand'),
\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
\})