2017-06-15 08:30:34 +00:00
|
|
|
" Author: Jordan Andree <https://github.com/jordanandree>, David Alexander <opensource@thelonelyghost.com>
|
2017-04-14 01:19:53 +00:00
|
|
|
" Description: This file adds support for checking Crystal with crystal build
|
|
|
|
|
|
|
|
function! ale_linters#crystal#crystal#Handle(buffer, lines) abort
|
|
|
|
let l:output = []
|
|
|
|
|
|
|
|
let l:lines = join(a:lines, '')
|
2017-04-15 11:52:08 +00:00
|
|
|
|
2017-04-14 01:19:53 +00:00
|
|
|
if !empty(l:lines)
|
|
|
|
let l:errors = json_decode(l:lines)
|
|
|
|
|
|
|
|
for l:error in l:errors
|
|
|
|
call add(l:output, {
|
|
|
|
\ 'bufnr': a:buffer,
|
|
|
|
\ 'lnum': l:error.line + 0,
|
|
|
|
\ 'col': l:error.column + 0,
|
|
|
|
\ 'text': l:error.message,
|
|
|
|
\ 'type': 'E',
|
|
|
|
\})
|
|
|
|
endfor
|
|
|
|
endif
|
|
|
|
|
|
|
|
return l:output
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! ale_linters#crystal#crystal#GetCommand(buffer) abort
|
2017-06-15 08:30:34 +00:00
|
|
|
let l:crystal_cmd = 'crystal build -f json --no-codegen --no-color -o '
|
2017-05-12 08:20:16 +00:00
|
|
|
let l:crystal_cmd .= ale#Escape(g:ale#util#nul_file)
|
2017-04-15 14:37:32 +00:00
|
|
|
let l:crystal_cmd .= ' %s'
|
2017-04-14 01:19:53 +00:00
|
|
|
|
2017-04-15 11:52:08 +00:00
|
|
|
return l:crystal_cmd
|
2017-04-14 01:19:53 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('crystal', {
|
|
|
|
\ 'name': 'crystal',
|
|
|
|
\ 'executable': 'crystal',
|
|
|
|
\ 'output_stream': 'both',
|
2017-04-15 14:37:32 +00:00
|
|
|
\ 'lint_file': 1,
|
2017-04-14 01:19:53 +00:00
|
|
|
\ 'command_callback': 'ale_linters#crystal#crystal#GetCommand',
|
|
|
|
\ 'callback': 'ale_linters#crystal#crystal#Handle',
|
|
|
|
\})
|