diff options
author | w0rp <devw0rp@gmail.com> | 2017-11-28 10:08:34 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-11-28 10:08:34 +0000 |
commit | 0ab689db0a137f7f62a3856eeba7c0ad235a625a (patch) | |
tree | ea80ba1bfb220de9a0aa55c60c7fac0cf8c13522 /ale_linters/python | |
parent | 4e821e64c7292ba635e55c409a015023d7549374 (diff) | |
download | ale-0ab689db0a137f7f62a3856eeba7c0ad235a625a.zip |
Allow warnings about trailing blank lines to be hidden for flake8 and pycodestyle
Diffstat (limited to 'ale_linters/python')
-rw-r--r-- | ale_linters/python/flake8.vim | 6 | ||||
-rw-r--r-- | ale_linters/python/pycodestyle.vim | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/ale_linters/python/flake8.vim b/ale_linters/python/flake8.vim index 480e6058..400e60f0 100644 --- a/ale_linters/python/flake8.vim +++ b/ale_linters/python/flake8.vim @@ -91,6 +91,12 @@ function! ale_linters#python#flake8#Handle(buffer, lines) abort continue endif + if l:code is# 'W391' + \&& !ale#Var(a:buffer, 'warn_about_trailing_blank_lines') + " Skip warnings for trailing blank lines if the option is off + continue + endif + let l:item = { \ 'lnum': l:match[1] + 0, \ 'col': l:match[2] + 0, diff --git a/ale_linters/python/pycodestyle.vim b/ale_linters/python/pycodestyle.vim index 0382e9d0..1958f37f 100644 --- a/ale_linters/python/pycodestyle.vim +++ b/ale_linters/python/pycodestyle.vim @@ -23,6 +23,12 @@ function! ale_linters#python#pycodestyle#Handle(buffer, lines) abort " lines are formatted as follows: " file.py:21:26: W291 trailing whitespace for l:match in ale#util#GetMatches(a:lines, l:pattern) + if l:match[4] is# 'W391' + \&& !ale#Var(a:buffer, 'warn_about_trailing_blank_lines') + " Skip warnings for trailing blank lines if the option is off + continue + endif + let l:item = { \ 'lnum': l:match[2] + 0, \ 'col': l:match[3] + 0, |