2016-10-03 23:16:53 +00:00
|
|
|
" 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
|
2016-10-10 13:02:39 +00:00
|
|
|
let pattern = 'Parse error:\s\+\(.\+\) on line \(\d\+\)'
|
2016-10-03 23:16:53 +00:00
|
|
|
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',
|
2016-10-07 16:08:11 +00:00
|
|
|
\ 'output_stream': 'both',
|
2016-10-03 23:16:53 +00:00
|
|
|
\ 'command': 'php -l --',
|
|
|
|
\ 'callback': 'ale_linters#php#php#Handle',
|
|
|
|
\})
|