Merge pull request #68 from KabbAmine/linter-coffee

Add coffee linter
This commit is contained in:
w0rp
2016-10-08 16:56:03 +01:00
committed by GitHub
3 changed files with 19 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
" Author: KabbAmine - https://github.com/KabbAmine
" Description: Coffee for checking coffee files
if exists('g:loaded_ale_linters_coffee_coffee')
finish
endif
let g:loaded_ale_linters_coffee_coffee = 1
call ALEAddLinter('coffee', {
\ 'name': 'coffee',
\ 'executable': 'coffee',
\ 'command': 'coffee -cp -s',
\ 'output_stream': 'stderr',
\ 'callback': 'ale#handlers#HandleGCCFormat',
\})