diff options
author | Ian2020 <Ian2020@users.noreply.github.com> | 2020-05-08 12:55:54 +0100 |
---|---|---|
committer | Ian2020 <Ian2020@users.noreply.github.com> | 2020-05-08 12:55:54 +0100 |
commit | ca97f32258cc6e3f32b5f7605801f053e7dbe320 (patch) | |
tree | f593cbc9af75248f995f5eee23c3b46ad477829d /ale_linters/sh | |
parent | 65bea1a5cbbc8ff2557410263c87c2e02cb4a42c (diff) | |
download | ale-ca97f32258cc6e3f32b5f7605801f053e7dbe320.zip |
Use a function to define shellcheck linters and vars needed, fixes tests
Diffstat (limited to 'ale_linters/sh')
-rw-r--r-- | ale_linters/sh/shellcheck.vim | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/ale_linters/sh/shellcheck.vim b/ale_linters/sh/shellcheck.vim index fbd7e49b..d9945126 100644 --- a/ale_linters/sh/shellcheck.vim +++ b/ale_linters/sh/shellcheck.vim @@ -1,10 +1,4 @@ " Author: w0rp <devw0rp@gmail.com> -" Description: This file adds support for using the shellcheck linter with -" shell scripts. +" Description: shellcheck linter for shell scripts. -call ale#linter#Define('sh', { -\ 'name': 'shellcheck', -\ 'executable': function('ale#handlers#shellcheck#GetExecutable'), -\ 'command': function('ale#handlers#shellcheck#GetCommand'), -\ 'callback': 'ale#handlers#shellcheck#Handle', -\}) +call ale#handlers#shellcheck#DefineLinter('sh') |