mirror of
https://github.com/dense-analysis/ale
synced 2025-01-10 08:19:54 +00:00
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
|
||||
endif
|
||||
|
||||
if l:code ==# 'I0011'
|
||||
" Skip 'Locally disabling' message
|
||||
continue
|
||||
endif
|
||||
|
||||
call add(l:output, {
|
||||
\ 'bufnr': a:buffer,
|
||||
\ 'lnum': l:match[1] + 0,
|
||||
|
Loading…
Reference in New Issue
Block a user