From 66ee2af132316005d1de4be1aa3e620a443b41b2 Mon Sep 17 00:00:00 2001 From: zmagod Date: Thu, 24 Aug 2017 09:20:44 +0200 Subject: [PATCH] fix eslint import/no-unresolved errors reports [fixes SCI-1570] --- .eslintrc.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 79a1fecc8..449df5b6f 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -17,12 +17,7 @@ } }, "rules": { - "import/no-unresolved": [ - "error", - { - "ignore": ["app/javascript/"] - } - ], + "import/no-unresolved": [2, {"commonjs": true, "amd": true}], "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], "spaced-comment": [ "error",