Merge pull request #209 from apuignav/ignore-pylint

Skip I0011 messages in pylint.
This commit is contained in:
w0rp 2016-12-07 22:57:12 +00:00 committed by GitHub
commit 815be12649
1 changed files with 5 additions and 0 deletions

View File

@ -127,6 +127,11 @@ function! ale#handlers#HandlePEP8Format(buffer, lines) abort
continue
endif
if l:code ==# 'I0011'
" Skip 'Locally disabling' message
continue
endif
call add(l:output, {
\ 'bufnr': a:buffer,
\ 'lnum': l:match[1] + 0,