summaryrefslogtreecommitdiff
path: root/autoload/ale/fixers/ktlint.vim
blob: 64d1340dce8b7791c03a3ed06b02132677c05f61 (plain)
1
2
3
4
5
6
7
8
" 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