From 07af1799b1ea43e7fc83374b544bc069a2d306c5 Mon Sep 17 00:00:00 2001 From: w0rp Date: Wed, 14 Jun 2017 16:40:03 +0100 Subject: #430 Use the style sub_type for flake8 problems --- ale_linters/python/flake8.vim | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'ale_linters') diff --git a/ale_linters/python/flake8.vim b/ale_linters/python/flake8.vim index 7af02d4e..df091053 100644 --- a/ale_linters/python/flake8.vim +++ b/ale_linters/python/flake8.vim @@ -117,7 +117,6 @@ 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 - " test.yml:35: [EANSIBLE0002] Trailing whitespace let l:pattern = '\v^[a-zA-Z]?:?[^:]+:(\d+):?(\d+)?: ([[:alnum:]]+) (.*)$' let l:output = [] @@ -134,9 +133,18 @@ function! ale_linters#python#flake8#Handle(buffer, lines) abort \ 'lnum': l:match[1] + 0, \ 'col': l:match[2] + 0, \ 'text': l:code . ': ' . l:match[4], - \ 'type': l:code[:0] ==# 'E' ? 'E' : 'W', + \ 'type': 'W', \} + if l:code[:0] ==# 'F' + let l:item.type = 'E' + elseif l:code[:0] ==# 'E' + let l:item.type = 'E' + let l:item.sub_type = 'style' + elseif l:code[:0] ==# 'W' + let l:item.sub_type = 'style' + endif + let l:end_col_pattern = get(s:end_col_pattern_map, l:code, '') if !empty(l:end_col_pattern) -- cgit v1.2.3