blob: 95eb31a81146ac1e550fe840f78102929b041dca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
function! neomake#makers#ft#beancount#EnabledMakers() abort
return ['bean_check']
endfunction
function! neomake#makers#ft#beancount#bean_check() abort
return {
\ 'exe': 'bean-check',
\ 'errorformat': '%E%f:%l:%m',
\ 'postprocess': function('neomake#postprocess#compress_whitespace'),
\ }
endfunction
" vim: ts=4 sw=4 et
|