Merge pull request #2215 from irwand/master
support older flake8 output, still used by hacking module from openstack style guide
This commit is contained in:
commit
d882c434a1
@ -89,7 +89,7 @@ function! ale_linters#python#flake8#Handle(buffer, lines) abort
|
||||
" Matches patterns line the following:
|
||||
"
|
||||
" stdin:6:6: E111 indentation is not a multiple of four
|
||||
let l:pattern = '\v^[a-zA-Z]?:?[^:]+:(\d+):?(\d+)?: ([[:alnum:]]+) (.*)$'
|
||||
let l:pattern = '\v^[a-zA-Z]?:?[^:]+:(\d+):?(\d+)?: ([[:alnum:]]+):? (.*)$'
|
||||
let l:output = []
|
||||
|
||||
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
||||
|
@ -258,3 +258,19 @@ Execute(E112 should be a syntax error):
|
||||
\ ale_linters#python#flake8#Handle(bufnr(''), [
|
||||
\ 'foo.py:6:1: E112 expected an indented block',
|
||||
\ ])
|
||||
|
||||
Execute(Compatibility with hacking which uses older style flake8):
|
||||
AssertEqual
|
||||
\ [
|
||||
\ {
|
||||
\ 'lnum': 6,
|
||||
\ 'col': 1,
|
||||
\ 'vcol': 1,
|
||||
\ 'code': 'H306',
|
||||
\ 'type': 'W',
|
||||
\ 'text': 'imports not in alphabetical order (smtplib, io)',
|
||||
\ },
|
||||
\ ],
|
||||
\ ale_linters#python#flake8#Handle(bufnr(''), [
|
||||
\ 'foo.py:6:1: H306: imports not in alphabetical order (smtplib, io)',
|
||||
\ ])
|
||||
|
Loading…
Reference in New Issue
Block a user