Default flake8 to --format=default

This commit is contained in:
Matthew Grossman 2017-08-08 21:04:46 -07:00
parent 670858f774
commit fe95fcd357
2 changed files with 9 additions and 8 deletions

View file

@ -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 : '')