Allow warnings about trailing blank lines to be hidden for flake8 and pycodestyle
This commit is contained in:
parent
4e821e64c7
commit
0ab689db0a
6 changed files with 101 additions and 9 deletions
|
@ -175,8 +175,9 @@ let g:ale_statusline_format = get(g:, 'ale_statusline_format',
|
|||
\)
|
||||
|
||||
" This flag can be set to 0 to disable warnings for trailing whitespace
|
||||
let g:ale_warn_about_trailing_whitespace =
|
||||
\ get(g:, 'ale_warn_about_trailing_whitespace', 1)
|
||||
call ale#Set('warn_about_trailing_whitespace', 1)
|
||||
" This flag can be set to 0 to disable warnings for trailing blank lines
|
||||
call ale#Set('warn_about_trailing_blank_lines', 1)
|
||||
|
||||
" A flag for controlling the maximum size of the command history to store.
|
||||
let g:ale_max_buffer_history_size = get(g:, 'ale_max_buffer_history_size', 20)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue