diff options
author | w0rp <devw0rp@gmail.com> | 2016-09-13 22:26:04 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2016-09-13 22:26:04 +0100 |
commit | d438da2b3b166ca4113fc7cbd3424311357fb3f3 (patch) | |
tree | 00ff6c34581ae8f2c765cc76724ef867e5038c5d /ale_linters | |
parent | d2e1348c096f04bde591089ca5ce87c4cbecbf61 (diff) | |
download | ale-d438da2b3b166ca4113fc7cbd3424311357fb3f3.zip |
Fix the eslint linter so it won't throw away lines if one earlier line doesn't match.
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/javascript/eslint.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/javascript/eslint.vim b/ale_linters/javascript/eslint.vim index 83460033..8eafd8a7 100644 --- a/ale_linters/javascript/eslint.vim +++ b/ale_linters/javascript/eslint.vim @@ -16,7 +16,7 @@ function! ale_linters#javascript#eslint#Handle(lines) let l:match = matchlist(line, pattern) if len(l:match) == 0 - break + continue endif let text = l:match[3] |