From b976c83ea958030fe4c4fa80f8583e10302e3447 Mon Sep 17 00:00:00 2001 From: waiter Zen Date: Thu, 7 Jul 2016 11:42:54 +0800 Subject: [PATCH] Fixed: .eslintignore is not ignored anymore (eslint 3.x regression) (#99) ([#99](https://github.com/MoOx/eslint-loader/pull/99) - @waiterZen) --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 5f3c4b7..ae8b04b 100644 --- a/index.js +++ b/index.js @@ -22,7 +22,7 @@ function lint(input, config, webpack) { resourcePath = resourcePath.substr(cwd.length + 1) } - var res = engine.executeOnText(input, resourcePath) + var res = engine.executeOnText(input, resourcePath, true) // executeOnText ensure we will have res.results[0] only // skip ignored file warning