diff options
author | Matthew Grossman <mgrossman@lyft.com> | 2017-08-08 21:04:46 -0700 |
---|---|---|
committer | Matthew Grossman <mgrossman@lyft.com> | 2017-08-09 10:05:56 -0700 |
commit | fe95fcd3570375b773b8d2e8c72d6f8e8527b9d6 (patch) | |
tree | 863059cd629fd6aa1dacfa6408896d109b8ad81a /ale_linters | |
parent | 670858f7743ad42ee83d6f9aab162b16069e4395 (diff) | |
download | ale-fe95fcd3570375b773b8d2e8c72d6f8e8527b9d6.zip |
Default flake8 to --format=default
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/python/flake8.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ale_linters/python/flake8.vim b/ale_linters/python/flake8.vim index 982a098e..e16090d4 100644 --- a/ale_linters/python/flake8.vim +++ b/ale_linters/python/flake8.vim @@ -80,6 +80,7 @@ function! ale_linters#python#flake8#GetCommand(buffer, version_output) abort \ : '' let l:options = ale#Var(a:buffer, 'python_flake8_options') + \ . ' --format=default' return ale#Escape(ale_linters#python#flake8#GetExecutable(a:buffer)) \ . (!empty(l:options) ? ' ' . l:options : '') |