mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-04-02 01:30:28 +08:00
13 lines
244 B
VimL
13 lines
244 B
VimL
" vim: ts=4 sw=4 et
|
|
|
|
function! neomake#makers#ft#kotlin#EnabledMakers() abort
|
|
return ['ktlint']
|
|
endfunction
|
|
|
|
function! neomake#makers#ft#kotlin#ktlint() abort
|
|
return {
|
|
\ 'errorformat': '%E%f:%l:%c: %m',
|
|
\ }
|
|
endfunction
|
|
|