#1754 Require snake_case names for linters in the codebase

This commit is contained in:
w0rp
2018-07-24 10:05:44 +01:00
parent 95be2bf1ff
commit d368f090ae
23 changed files with 52 additions and 84 deletions

View File

@@ -13,7 +13,8 @@ function! ale_linters#haskell#stack_build#GetCommand(buffer) abort
endfunction
call ale#linter#Define('haskell', {
\ 'name': 'stack-build',
\ 'name': 'stack_build',
\ 'aliases': ['stack-build'],
\ 'output_stream': 'stderr',
\ 'executable': 'stack',
\ 'command_callback': 'ale_linters#haskell#stack_build#GetCommand',