2017-03-03 20:27:07 +00:00
|
|
|
" Author: Patrick Lewis - https://github.com/patricklewis
|
|
|
|
" Description: haml-lint for Haml files
|
|
|
|
|
|
|
|
function! ale_linters#haml#hamllint#Handle(buffer, lines) abort
|
|
|
|
" Matches patterns like the following:
|
|
|
|
" <path>:51 [W] RuboCop: Use the new Ruby 1.9 hash syntax.
|
|
|
|
let l:pattern = '\v^.*:(\d+) \[([EW])\] (.+)$'
|
|
|
|
let l:output = []
|
|
|
|
|
2017-04-17 23:35:53 +00:00
|
|
|
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
2017-03-03 20:27:07 +00:00
|
|
|
call add(l:output, {
|
|
|
|
\ 'lnum': l:match[1] + 0,
|
|
|
|
\ 'type': l:match[2],
|
|
|
|
\ 'text': l:match[3]
|
|
|
|
\})
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return l:output
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('haml', {
|
|
|
|
\ 'name': 'hamllint',
|
|
|
|
\ 'executable': 'haml-lint',
|
|
|
|
\ 'command': 'haml-lint %t',
|
|
|
|
\ 'callback': 'ale_linters#haml#hamllint#Handle'
|
|
|
|
\})
|