From a6e32d0822a8230356c68589f4530c1295928bcd Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Thu, 26 Aug 2021 22:50:37 -0500 Subject: [PATCH] Revert "chore(lint): disable breaking rules" This reverts commit 7207ca8cc4501df9b16c81246ace9b3c988c0c20. --- website/client/.eslintrc.js | 1 - website/client/tests/unit/.eslintrc.js | 1 - 2 files changed, 2 deletions(-) diff --git a/website/client/.eslintrc.js b/website/client/.eslintrc.js index 7dc69cc284..d73751cf49 100644 --- a/website/client/.eslintrc.js +++ b/website/client/.eslintrc.js @@ -13,7 +13,6 @@ module.exports = { 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', // TODO find a way to let eslint understand webpack aliases 'import/no-unresolved': 'off', - 'import/extensions': 'off', 'vue/no-v-html': 'off', 'vue/html-self-closing': ['error', { html: { diff --git a/website/client/tests/unit/.eslintrc.js b/website/client/tests/unit/.eslintrc.js index 270ac3cd72..7ba933af33 100644 --- a/website/client/tests/unit/.eslintrc.js +++ b/website/client/tests/unit/.eslintrc.js @@ -5,6 +5,5 @@ base.rules = base.rules || {}; // TODO find a way to let eslint understand webpack aliases base.rules['import/no-unresolved'] = 'off'; -base.rules['import/extensions'] = 'off'; module.exports = base;