Fix #2192 - Handle more ignore-pattern messages for ESLint

This commit is contained in:
w0rp
2019-01-27 12:08:31 +00:00
parent d7ced31fe2
commit 79135dfe13
2 changed files with 18 additions and 1 deletions

View File

@@ -121,7 +121,7 @@ function! ale#handlers#eslint#Handle(buffer, lines) abort
let l:text = l:match[3]
if ale#Var(a:buffer, 'javascript_eslint_suppress_eslintignore')
if l:text is# 'File ignored because of a matching ignore pattern. Use "--no-ignore" to override.'
if l:text =~# '^File ignored'
continue
endif
endif