From a0e0408ecc39d0fc7b8b66ac39c2dc5e7805e787 Mon Sep 17 00:00:00 2001 From: w0rp Date: Tue, 6 Jun 2017 10:22:52 +0100 Subject: Complain about incorrect uses of expand('%...') --- custom-checks | 2 ++ 1 file changed, 2 insertions(+) (limited to 'custom-checks') diff --git a/custom-checks b/custom-checks index c4b329ca..6145478b 100755 --- a/custom-checks +++ b/custom-checks @@ -55,6 +55,7 @@ check_errors() { RETURN_CODE=1 echo "$match $message" done < <(grep -n "$regex" "$directory"/**/*.vim \ + | grep -v 'no-custom-checks' \ | grep -o '^[^:]\+:[0-9]\+' \ | sed 's:^\./::') done @@ -77,5 +78,6 @@ check_errors $'\t' 'Use four spaces, not tabs' # This check should prevent people from using a particular inconsistent name. check_errors 'let g:ale_\w\+_\w\+_args =' 'Name your option g:ale___options instead' check_errors 'shellescape(' 'Use ale#Escape instead of shellescape' +check_errors "expand(['\"]%" "Use expand('#' . a:buffer . '...') instead. You might get a filename for the wrong buffer." exit $RETURN_CODE -- cgit v1.2.3