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

function! neomake#makers#ft#haml#EnabledMakers() abort
    return ['hamllint']
endfunction

function! neomake#makers#ft#haml#hamllint() abort
    return {
        \ 'exe': 'haml-lint',
        \ 'args': ['--no-color'],
        \ 'errorformat': '%f:%l [%t] %m'
        \ }
endfunction