summaryrefslogtreecommitdiff
path: root/ale_linters/coffee/coffee.vim
blob: 243fec6b42940e46639afc0751f5738e3ffa0fd2 (plain)
1
2
3
4
5
6
7
8
9
10
" Author: KabbAmine - https://github.com/KabbAmine
" Description: Coffee for checking coffee files

call ale#linter#Define('coffee', {
\   'name': 'coffee',
\   'executable': 'coffee',
\   'command': 'coffee -cp -s',
\   'output_stream': 'stderr',
\   'callback': 'ale#handlers#HandleGCCFormat',
\})