summaryrefslogtreecommitdiff
path: root/ale_linters/stylus/stylelint.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/stylus/stylelint.vim')
-rw-r--r--ale_linters/stylus/stylelint.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/ale_linters/stylus/stylelint.vim b/ale_linters/stylus/stylelint.vim
index 2256f3c0..ce6f9426 100644
--- a/ale_linters/stylus/stylelint.vim
+++ b/ale_linters/stylus/stylelint.vim
@@ -12,9 +12,9 @@ endfunction
call ale#linter#Define('stylus', {
\ 'name': 'stylelint',
-\ 'executable_callback': ale#node#FindExecutableFunc('stylus_stylelint', [
+\ 'executable': {b -> ale#node#FindExecutable(b, 'stylus_stylelint', [
\ 'node_modules/.bin/stylelint',
-\ ]),
-\ 'command_callback': 'ale_linters#stylus#stylelint#GetCommand',
+\ ])},
+\ 'command': function('ale_linters#stylus#stylelint#GetCommand'),
\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
\})