mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-26 05:51:08 +08:00
Use explicit scope in all ale_linters
vint -s is now clean
This commit is contained in:
@@ -11,18 +11,18 @@ 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:\s\+\(.\+\) on line \(\d\+\)'
|
||||
let output = []
|
||||
let l:pattern = 'Parse error:\s\+\(.\+\) on line \(\d\+\)'
|
||||
let l:output = []
|
||||
|
||||
for line in a:lines
|
||||
let l:match = matchlist(line, pattern)
|
||||
for l:line in a:lines
|
||||
let l:match = matchlist(l:line, l:pattern)
|
||||
|
||||
if len(l:match) == 0
|
||||
continue
|
||||
endif
|
||||
|
||||
" vcol is needed to indicate that the column is a character.
|
||||
call add(output, {
|
||||
call add(l:output, {
|
||||
\ 'bufnr': a:buffer,
|
||||
\ 'lnum': l:match[2] + 0,
|
||||
\ 'vcol': 0,
|
||||
@@ -33,7 +33,7 @@ function! ale_linters#php#php#Handle(buffer, lines)
|
||||
\})
|
||||
endfor
|
||||
|
||||
return output
|
||||
return l:output
|
||||
endfunction
|
||||
|
||||
call ale#linter#Define('php', {
|
||||
|
||||
Reference in New Issue
Block a user