Fix #786 - Only set --no-local-style for yapf if a configuration file is detected

This commit is contained in:
w0rp
2017-07-20 11:07:07 +01:00
parent f133ce96f8
commit a5f754a5e0
3 changed files with 17 additions and 4 deletions

View File

@@ -17,10 +17,10 @@ function! ale#fixers#yapf#Fix(buffer) abort
let l:config = ale#path#FindNearestFile(a:buffer, '.style.yapf')
let l:config_options = !empty(l:config)
\ ? ' --style ' . ale#Escape(l:config)
\ ? ' --no-local-style --style ' . ale#Escape(l:config)
\ : ''
return {
\ 'command': ale#Escape(l:executable) . ' --no-local-style' . l:config_options,
\ 'command': ale#Escape(l:executable) . l:config_options,
\}
endfunction