summaryrefslogtreecommitdiff
path: root/autoload/ale/fixers/ktlint.vim
blob: cb975d6ca9ed0d9d28d664fe08f643bb8e36784d (plain)
1
2
3
4
5
6
7
8
9
" 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',
    \   'read_temporary_file': 1,
    \}
endfunction