diff options
author | Ian2020 <Ian2020@users.noreply.github.com> | 2020-04-28 20:53:42 +0100 |
---|---|---|
committer | Ian2020 <Ian2020@users.noreply.github.com> | 2020-04-28 20:53:42 +0100 |
commit | 716f9a9bbb46162e967cb95b892d0516a06ef129 (patch) | |
tree | a4c71e30fbf5ee8d28fdc2c8f755c8398b9bacd9 | |
parent | f67cb56e5e73f00da643b050bfb6ab6e4416c5a2 (diff) | |
download | ale-716f9a9bbb46162e967cb95b892d0516a06ef129.zip |
Fix linting issue - indentation incorrect
-rw-r--r-- | autoload/ale/handlers/shellcheck.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/autoload/ale/handlers/shellcheck.vim b/autoload/ale/handlers/shellcheck.vim index b2de4eef..2a5eadc3 100644 --- a/autoload/ale/handlers/shellcheck.vim +++ b/autoload/ale/handlers/shellcheck.vim @@ -100,8 +100,8 @@ endfunction function! ale#handlers#shellcheck#GetCommand(buffer) abort return ale#semver#RunWithVersionCheck(a:buffer, -\ ale#Var(a:buffer, 'sh_shellcheck_executable'), -\ '%e --version', -\ function('ale#handlers#shellcheck#GetCommandWithVersion'), -\ ) + \ ale#Var(a:buffer, 'sh_shellcheck_executable'), + \ '%e --version', + \ function('ale#handlers#shellcheck#GetCommandWithVersion'), + \) endfunction |