From 197137aea0cd4816a3705d3d63e7bb0d61516c87 Mon Sep 17 00:00:00 2001 From: w0rp Date: Fri, 7 Oct 2016 22:16:29 +0100 Subject: Add support for Pug with pug-lint. --- ale_linters/pug/puglint.vim | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 ale_linters/pug/puglint.vim (limited to 'ale_linters/pug') diff --git a/ale_linters/pug/puglint.vim b/ale_linters/pug/puglint.vim new file mode 100644 index 00000000..d59c7f06 --- /dev/null +++ b/ale_linters/pug/puglint.vim @@ -0,0 +1,44 @@ +" Author: w0rp - +" Description: pug-lint for checking Pug/Jade files. + +if exists('g:loaded_ale_linters_pug_puglint') + finish +endif + +let g:loaded_ale_linters_pug_puglint = 1 + +function! ale_linters#pug#puglint#Handle(buffer, lines) + " Matches patterns like the following: + " + " temp.jade:6:1 The end of the string reached with no closing bracket ) found. + let pattern = '^.\+:\(\d\+\):\(\d\+\) \(.\+\)$' + let output = [] + + for line in a:lines + let l:match = matchlist(line, pattern) + + if len(l:match) == 0 + continue + endif + + call add(output, { + \ 'bufnr': a:buffer, + \ 'lnum': l:match[1] + 0, + \ 'vcol': 0, + \ 'col': l:match[2] + 0, + \ 'text': l:match[3], + \ 'type': 'E', + \ 'nr': -1, + \}) + endfor + + return output +endfunction + +call ALEAddLinter('pug', { +\ 'name': 'puglint', +\ 'executable': 'pug-lint', +\ 'output_stream': 'stderr', +\ 'command': g:ale#util#stdin_wrapper . ' .pug pug-lint -r inline', +\ 'callback': 'ale_linters#pug#puglint#Handle', +\}) -- cgit v1.2.3