mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-04-03 10:50:31 +08:00
9 lines
257 B
VimL
Vendored
9 lines
257 B
VimL
Vendored
" Author: Michael Phillips <michaeljoelphillips@gmail.com>
|
|
" Description: Fix Kotlin files with ktlint.
|
|
|
|
function! ale#fixers#ktlint#Fix(buffer) abort
|
|
return {
|
|
\ 'command': ale#handlers#ktlint#GetCommand(a:buffer) . ' --format'
|
|
\}
|
|
endfunction
|