diff options
author | w0rp <devw0rp@gmail.com> | 2016-10-04 00:16:53 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2016-10-04 00:16:53 +0100 |
commit | 6269ffa0b28bce00d5e9df63ea5c5829a15dd125 (patch) | |
tree | fc027b3c3e73831ddb92f4005d9bf3190224281d /ale_linters | |
parent | 2d1f1fd698ba195b32e58bbf09b48d7a236bea5f (diff) | |
download | ale-6269ffa0b28bce00d5e9df63ea5c5829a15dd125.zip |
Add support for checking PHP code, courtesy of Spencer Wood.
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/php/php.vim | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/ale_linters/php/php.vim b/ale_linters/php/php.vim new file mode 100644 index 00000000..4b4b1720 --- /dev/null +++ b/ale_linters/php/php.vim @@ -0,0 +1,45 @@ +" Author: Spencer Wood <https://github.com/scwood> +" Description: This file adds support for checking PHP with php-cli + +if exists('g:loaded_ale_linters_php_php') + finish +endif + +let g:loaded_ale_linters_php_php = 1 + +function! ale_linters#php#php#Handle(buffer, lines) + " Matches patterns like the following: + " + " Parse error: parse error in - on line 7 + let pattern = 'Parse error: \(.\+\) on line \(\d\+\)' + let output = [] + + for line in a:lines + let l:match = matchlist(line, pattern) + + if len(l:match) == 0 + continue + endif + + " vcol is needed to indicate that the column is a character. + call add(output, { + \ 'bufnr': a:buffer, + \ 'lnum': l:match[2] + 0, + \ 'vcol': 0, + \ 'col': 1, + \ 'text': l:match[1], + \ 'type': 'E', + \ 'nr': -1, + \}) + endfor + + return output +endfunction + +call ALEAddLinter('php', { +\ 'name': 'php', +\ 'executable': 'php', +\ 'output_stream': 'stderr', +\ 'command': 'php -l --', +\ 'callback': 'ale_linters#php#php#Handle', +\}) |