mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-31 00:24:31 +08:00
Minor fixes:
* Ensure that php linter pattern does not include spaces:
PHP can return errors with extra spaces like the following:
`PHP Parse error: syntax error, unexpected end of file in t.php on line 4`
* Set option locally to buffer
* Rename noErrors variable according to the project's naming convention
* Make the jsonlint pattern a little better
This commit is contained in:
@@ -11,7 +11,7 @@ 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 pattern = 'Parse error:\s\+\(.\+\) on line \(\d\+\)'
|
||||
let output = []
|
||||
|
||||
for line in a:lines
|
||||
|
||||
Reference in New Issue
Block a user