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:
Kabbaj Amine
2016-10-10 16:02:39 +03:00
parent 4c9aa1c638
commit 4149971c08
4 changed files with 7 additions and 7 deletions

View File

@@ -10,7 +10,7 @@ function! ale_linters#json#jsonlint#Handle(buffer, lines)
" Matches patterns like the following:
" line 2, col 15, found: 'STRING' - expected: 'EOF', '}', ',', ']'.
let pattern = 'line \(\d\+\), col \(\d*\), \(.\+\)'
let pattern = '^line \(\d\+\), col \(\d*\), \(.\+\)$'
let output = []
for line in a:lines