summaryrefslogtreecommitdiff
path: root/ale_linters/python
diff options
context:
space:
mode:
authorMatthew Grossman <mgrossman@lyft.com>2017-08-08 21:04:46 -0700
committerMatthew Grossman <mgrossman@lyft.com>2017-08-09 10:05:56 -0700
commitfe95fcd3570375b773b8d2e8c72d6f8e8527b9d6 (patch)
tree863059cd629fd6aa1dacfa6408896d109b8ad81a /ale_linters/python
parent670858f7743ad42ee83d6f9aab162b16069e4395 (diff)
downloadale-fe95fcd3570375b773b8d2e8c72d6f8e8527b9d6.zip
Default flake8 to --format=default
Diffstat (limited to 'ale_linters/python')
-rw-r--r--ale_linters/python/flake8.vim1
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 : '')