diff options
author | w0rp <w0rp@users.noreply.github.com> | 2016-11-01 20:44:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-01 20:44:25 +0000 |
commit | 5b8410f868b737579ea99b27a600e3322a0b1450 (patch) | |
tree | 160327c63ff0cf07164416f89d3c63884614b38a /ale_linters | |
parent | f03fb64e5187aad15cf4abcb9bc8f9a5330225cd (diff) | |
parent | 8632e6b4e038178fd367aade1fa213dd93845af5 (diff) | |
download | ale-5b8410f868b737579ea99b27a600e3322a0b1450.zip |
Merge pull request #156 from edwlarkey/add_foodcritic
Added support for foodcritic
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/chef/foodcritic.vim | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/ale_linters/chef/foodcritic.vim b/ale_linters/chef/foodcritic.vim new file mode 100644 index 00000000..35f5c9b5 --- /dev/null +++ b/ale_linters/chef/foodcritic.vim @@ -0,0 +1,41 @@ +" Author: Edward Larkey <edwlarkey@mac.com> +" Description: This file adds the foodcritic linter for Chef files. + +function! ale_linters#chef#foodcritic#Handle(buffer, lines) + " 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] + + " vcol is Needed to indicate that the column is a character. + call add(l:output, { + \ 'bufnr': a:buffer, + \ 'lnum': l:match[3] + 0, + \ 'vcol': 0, + \ 'col': 0, + \ 'text': l:text, + \ 'type': 'W', + \ 'nr': -1, + \}) + endfor + + return l:output +endfunction + +call ale#linter#Define('chef', { +\ 'name': 'foodcritic', +\ 'executable': 'foodcritic', +\ 'command': g:ale#util#stdin_wrapper . ' .rb foodcritic', +\ 'callback': 'ale_linters#chef#foodcritic#Handle', +\}) + |