ale/ale_linters/coffee/coffeelint.vim

44 lines
1.4 KiB
VimL
Raw Normal View History

2016-10-03 18:55:55 +00:00
" Author: Prashanth Chandra https://github.com/prashcr
" Description: coffeelint linter for coffeescript files
2016-10-02 07:39:21 +00:00
function! ale_linters#coffee#coffeelint#GetExecutable(buffer) abort
2017-04-17 22:29:02 +00:00
return ale#path#ResolveLocalPath(
\ a:buffer,
\ 'node_modules/.bin/coffeelint',
\ 'coffeelint'
\)
endfunction
function! ale_linters#coffee#coffeelint#GetCommand(buffer) abort
return ale_linters#coffee#coffeelint#GetExecutable(a:buffer)
\ . ' --stdin --reporter csv'
endfunction
function! ale_linters#coffee#coffeelint#Handle(buffer, lines) abort
2016-10-02 07:39:21 +00:00
" Matches patterns like the following:
"
" path,lineNumber,lineNumberEnd,level,message
" stdin,14,,error,Throwing strings is forbidden
"
2016-10-02 07:39:21 +00:00
" Note that we currently ignore lineNumberEnd for multiline errors
2017-03-13 11:09:49 +00:00
let l:pattern = 'stdin,\(\d\+\),\(\d*\),\(.\{-1,}\),\(.\+\)'
let l:output = []
2016-10-02 07:39:21 +00:00
for l:match in ale#util#GetMatches(a:lines, l:pattern)
call add(l:output, {
\ 'lnum': str2nr(l:match[1]),
\ 'type': l:match[3] ==# 'error' ? 'E' : 'W',
\ 'text': l:match[4],
2016-10-02 07:39:21 +00:00
\})
endfor
return l:output
2016-10-02 07:39:21 +00:00
endfunction
call ale#linter#Define('coffee', {
2016-10-02 07:39:21 +00:00
\ 'name': 'coffeelint',
\ 'executable_callback': 'ale_linters#coffee#coffeelint#GetExecutable',
\ 'command_callback': 'ale_linters#coffee#coffeelint#GetCommand',
2016-10-02 07:39:21 +00:00
\ 'callback': 'ale_linters#coffee#coffeelint#Handle',
\})