summaryrefslogtreecommitdiff
path: root/ale_linters/pug
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2016-10-11 20:49:57 +0100
committerGitHub <noreply@github.com>2016-10-11 20:49:57 +0100
commitec2ce91f3f57f449960b682512978f45483e2b6b (patch)
tree20936ebc59e519d29dc60fc38073cb5f6776bc66 /ale_linters/pug
parent687d66cf253cde4de34dc5fa883beff5d23fc333 (diff)
parent93cd44e2ecf471e8312ba565cd9ffcfe43e5a6c5 (diff)
downloadale-ec2ce91f3f57f449960b682512978f45483e2b6b.zip
Merge pull request #92 from neersighted/handlers
Remove many redundant handlers
Diffstat (limited to 'ale_linters/pug')
-rw-r--r--ale_linters/pug/puglint.vim30
1 files changed, 1 insertions, 29 deletions
diff --git a/ale_linters/pug/puglint.vim b/ale_linters/pug/puglint.vim
index e3eff72f..be1be190 100644
--- a/ale_linters/pug/puglint.vim
+++ b/ale_linters/pug/puglint.vim
@@ -7,38 +7,10 @@ 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 l:pattern = '^.\+:\(\d\+\):\(\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
-
- call add(l: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 l:output
-endfunction
-
call ale#linter#Define('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',
+\ 'callback': 'ale#handlers#HandleUnixFormatAsError',
\})