mirror of https://github.com/dense-analysis/ale
Merge pull request #209 from apuignav/ignore-pylint
Skip I0011 messages in pylint.
This commit is contained in:
commit
815be12649
|
@ -127,6 +127,11 @@ function! ale#handlers#HandlePEP8Format(buffer, lines) abort
|
||||||
continue
|
continue
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if l:code ==# 'I0011'
|
||||||
|
" Skip 'Locally disabling' message
|
||||||
|
continue
|
||||||
|
endif
|
||||||
|
|
||||||
call add(l:output, {
|
call add(l:output, {
|
||||||
\ 'bufnr': a:buffer,
|
\ 'bufnr': a:buffer,
|
||||||
\ 'lnum': l:match[1] + 0,
|
\ 'lnum': l:match[1] + 0,
|
||||||
|
|
Loading…
Reference in New Issue