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

function! neomake#makers#ft#coffee#EnabledMakers() abort
    return ['coffeelint']
endfunction

function! neomake#makers#ft#coffee#coffeelint() abort
    return {
        \ 'args': ['--reporter=csv'],
        \ 'errorformat': '%f\,%l\,%\d%#\,%trror\,%m,' .
            \ '%f\,%l\,%trror\,%m,' .
            \ '%f\,%l\,%\d%#\,%tarn\,%m,' .
            \ '%f\,%l\,%tarn\,%m'
            \ }
endfunction