Pylint: ignore informational messages.
This commit is contained in:
parent
00dd154122
commit
e4a966a517
@ -34,7 +34,14 @@ function! SyntaxCheckers_python_pylint_GetLocList()
|
|||||||
\ 'postprocess': ['sort'] })
|
\ 'postprocess': ['sort'] })
|
||||||
|
|
||||||
for n in range(len(loclist))
|
for n in range(len(loclist))
|
||||||
let loclist[n]['type'] = match(['R', 'C', 'W'], loclist[n]['text'][1]) >= 0 ? 'W' : 'E'
|
let type = loclist[n]['text'][1]
|
||||||
|
if type =~# '\m^[EF]'
|
||||||
|
let loclist[n]['type'] = 'E'
|
||||||
|
elseif type =~# '\m^[CRW]'
|
||||||
|
let loclist[n]['type'] = 'W'
|
||||||
|
else
|
||||||
|
let loclist[n]['valid'] = 0
|
||||||
|
endif
|
||||||
let loclist[n]['vcol'] = 0
|
let loclist[n]['vcol'] = 0
|
||||||
endfor
|
endfor
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user