mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-20 11:11:13 +08:00
Fix #786 - Only set --no-local-style for yapf if a configuration file is detected
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user