Require function! to be used instead of function

This commit is contained in:
w0rp 2017-09-11 00:47:10 +01:00
parent e19a81cb09
commit cb8a140141
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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'