diff options
author | w0rp <devw0rp@gmail.com> | 2017-02-11 18:49:12 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-02-11 18:49:12 +0000 |
commit | c33602534e205aa677521ce49a8054588d88bdc2 (patch) | |
tree | b92ce5ae89757c1f711ae69b5f995a4a5df79eeb /autoload | |
parent | beeef28b1a6373c324fb8c5c8b5ec8bb77181431 (diff) | |
download | ale-c33602534e205aa677521ce49a8054588d88bdc2.zip |
Fix Pug linting
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/handlers.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/handlers.vim b/autoload/ale/handlers.vim index 4f1611f3..544c91de 100644 --- a/autoload/ale/handlers.vim +++ b/autoload/ale/handlers.vim @@ -12,7 +12,7 @@ function! s:HandleUnixFormat(buffer, lines, type) abort " file.go:27: missing argument for Printf("%s"): format reads arg 2, have only 1 args " file.go:53:10: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) " file.go:5:2: expected declaration, found 'STRING' "log" - let l:pattern = '^' . s:path_pattern . ':\(\d\+\):\?\(\d\+\)\?: \(.\+\)$' + let l:pattern = '^' . s:path_pattern . ':\(\d\+\):\?\(\d\+\)\?:\? \(.\+\)$' let l:output = [] for l:line in a:lines |