Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
Checker ansible_lint: fix errorformat (@omarkhan).
Browse files Browse the repository at this point in the history
  • Loading branch information
lcd047 committed Jun 5, 2016
1 parent 19beae6 commit 0ec2a5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/syntastic.vim
Expand Up @@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:_SYNTASTIC_START
endif

let g:_SYNTASTIC_VERSION = '3.7.0-141'
let g:_SYNTASTIC_VERSION = '3.7.0-142'
lockvar g:_SYNTASTIC_VERSION

" Sanity checks {{{1
Expand Down
4 changes: 3 additions & 1 deletion syntax_checkers/ansible/ansible_lint.vim
Expand Up @@ -28,7 +28,9 @@ endfunction
function! SyntaxCheckers_ansible_ansible_lint_GetLocList() dict
let makeprg = self.makeprgBuild({ 'args_after': '-p' })

let errorformat = '%f:%l: [ANSIBLE%n] %m'
let errorformat =
\ '%f:%l: [EANSIBLE%n] %m,' .
\ '%f:%l: [ANSIBLE%n] %m'

let env = syntastic#util#isRunningWindows() ? {} : { 'TERM': 'dumb' }

Expand Down

0 comments on commit 0ec2a5c

Please sign in to comment.