2016-10-30 18:23:32 +00:00
|
|
|
" Author: Edward Larkey <edwlarkey@mac.com>
|
2017-04-05 17:21:47 +00:00
|
|
|
" Author: Jose Junior <jose.junior@gmail.com>
|
2016-10-30 18:23:32 +00:00
|
|
|
" Description: This file adds the foodcritic linter for Chef files.
|
|
|
|
|
2017-04-05 17:21:47 +00:00
|
|
|
" Support options!
|
|
|
|
let g:ale_chef_foodcritic_options = get(g:, 'ale_chef_foodcritic_options', '')
|
|
|
|
let g:ale_chef_foodcritic_executable = get(g:, 'ale_chef_foodcritic_executable', 'foodcritic')
|
|
|
|
|
2017-01-22 14:54:57 +00:00
|
|
|
function! ale_linters#chef#foodcritic#Handle(buffer, lines) abort
|
2016-10-30 18:23:32 +00:00
|
|
|
" Matches patterns line the following:
|
|
|
|
"
|
|
|
|
" FC002: Avoid string interpolation where not required: httpd.rb:13
|
|
|
|
let l:pattern = '^\(.\+:\s.\+\):\s\(.\+\):\(\d\+\)$'
|
|
|
|
let l:output = []
|
|
|
|
|
|
|
|
for l:line in a:lines
|
|
|
|
let l:match = matchlist(l:line, l:pattern)
|
|
|
|
|
|
|
|
if len(l:match) == 0
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
|
|
|
|
let l:text = l:match[1]
|
|
|
|
|
|
|
|
call add(l:output, {
|
|
|
|
\ 'bufnr': a:buffer,
|
|
|
|
\ 'lnum': l:match[3] + 0,
|
|
|
|
\ 'col': 0,
|
|
|
|
\ 'text': l:text,
|
|
|
|
\ 'type': 'W',
|
|
|
|
\})
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return l:output
|
|
|
|
endfunction
|
|
|
|
|
2017-04-05 17:21:47 +00:00
|
|
|
function! ale_linters#chef#foodcritic#GetCommand(buffer) abort
|
2017-04-15 11:52:08 +00:00
|
|
|
return printf('%s %s %%t',
|
|
|
|
\ g:ale_chef_foodcritic_executable,
|
|
|
|
\ escape(g:ale_chef_foodcritic_options, '~')
|
|
|
|
\)
|
2017-04-05 17:21:47 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
2016-10-30 18:23:32 +00:00
|
|
|
call ale#linter#Define('chef', {
|
|
|
|
\ 'name': 'foodcritic',
|
|
|
|
\ 'executable': 'foodcritic',
|
2017-04-05 17:21:47 +00:00
|
|
|
\ 'command_callback': 'ale_linters#chef#foodcritic#GetCommand',
|
2016-10-30 18:23:32 +00:00
|
|
|
\ 'callback': 'ale_linters#chef#foodcritic#Handle',
|
|
|
|
\})
|