summaryrefslogtreecommitdiff
path: root/ale_linters/json
diff options
context:
space:
mode:
authorKabbaj Amine <amine.kabb@gmail.com>2016-10-10 16:02:39 +0300
committerKabbaj Amine <amine.kabb@gmail.com>2016-10-10 18:05:18 +0300
commit4149971c089a56a3ea47ed30a9c6066ee90e8085 (patch)
tree9ca0f55b11c6b320a34cd9a81bd7c1a019165592 /ale_linters/json
parent4c9aa1c638ba228a5d97e0fcc4d39e00664c8f31 (diff)
downloadale-4149971c089a56a3ea47ed30a9c6066ee90e8085.zip
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
Diffstat (limited to 'ale_linters/json')
-rw-r--r--ale_linters/json/jsonlint.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/json/jsonlint.vim b/ale_linters/json/jsonlint.vim
index bacb87bf..77145bcd 100644
--- a/ale_linters/json/jsonlint.vim
+++ b/ale_linters/json/jsonlint.vim
@@ -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