diff options
Diffstat (limited to 'ale_linters/json/jsonlint.vim')
-rw-r--r-- | ale_linters/json/jsonlint.vim | 2 |
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 |