From 079a52ef0c16394cdd914bd0417c95d967459180 Mon Sep 17 00:00:00 2001 From: Chris Wilkinson Date: Wed, 3 Nov 2021 14:43:41 +0000 Subject: [PATCH] fix(eslint): lint the Jest tests Refs #422 --- .eslintignore | 1 - .eslintrc.json | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.eslintignore b/.eslintignore index 39c14d97..5a31986e 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,4 +1,3 @@ /dist/ /integration/ /src/frontend/ -/test/ diff --git a/.eslintrc.json b/.eslintrc.json index 68759af4..48c04826 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -57,7 +57,9 @@ "import/namespace": ["error", { "allowComputed": true }], - "node/no-missing-import": "off" + "jest/no-disabled-tests": "off", + "node/no-missing-import": "off", + "node/no-unpublished-import": "off" } }, {