aboutsummaryrefslogtreecommitdiff
path: root/.vim/autoload/neomake/makers/ft/cf3.vim
blob: 7826fc6f16f4842d4f530303d7e14a7df81c2060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
" vim: ts=4 sw=4 et

function! neomake#makers#ft#cf3#EnabledMakers() abort
    return ['cfpromises']
endfunction

function! neomake#makers#ft#cf3#cfpromises() abort
    return {
        \ 'exe': 'cf-promises',
        \ 'args': ['-cf'],
        \ 'errorformat':
            \ '%E%f:%l:%c: error: %m',
        \ }
endfunction