diff options
-rw-r--r-- | ale_linters/haskell/stack_build.vim | 2 | ||||
-rwxr-xr-x | test/script/custom-checks | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ale_linters/haskell/stack_build.vim b/ale_linters/haskell/stack_build.vim index 525fd3fb..44e2e86f 100644 --- a/ale_linters/haskell/stack_build.vim +++ b/ale_linters/haskell/stack_build.vim @@ -6,7 +6,7 @@ call ale#Set('haskell_stack_build_options', '--fast') -function ale_linters#haskell#stack_build#GetCommand(buffer) abort +function! ale_linters#haskell#stack_build#GetCommand(buffer) abort let l:flags = ale#Var(a:buffer, 'haskell_stack_build_options') return 'stack build ' . l:flags diff --git a/test/script/custom-checks b/test/script/custom-checks index aad16c9c..3624ffd7 100755 --- a/test/script/custom-checks +++ b/test/script/custom-checks @@ -75,6 +75,7 @@ fi check_errors \ '^function.*) *$' \ 'Function without abort keyword (See :help except-compat)' +check_errors '^function[^!]' 'function without !' check_errors ' \+$' 'Trailing whitespace' check_errors '^ * end\?i\? *$' 'Write endif, not en, end, or endi' check_errors '^ [^ ]' 'Use four spaces, not two spaces' |