mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-27 05:12:16 +08:00
Fix biome formatter (#4733)
* Fix biome formatter Added escaped executable to the biome#Fix command * Added fixer callback test
This commit is contained in:
@@ -3,7 +3,7 @@ function! ale#fixers#biome#Fix(buffer) abort
|
||||
let l:options = ale#Var(a:buffer, 'biome_options')
|
||||
|
||||
return {
|
||||
\ 'command': '%e format'
|
||||
\ 'command': ale#Escape(l:executable) . ' format'
|
||||
\ . (!empty(l:options) ? ' ' . l:options : '')
|
||||
\ . ' --stdin-file-path=%s',
|
||||
\}
|
||||
|
||||
Reference in New Issue
Block a user