From ae258ce94cee0f13fac18eed845e58255f469818 Mon Sep 17 00:00:00 2001 From: Shaun Hamilton Date: Fri, 3 Dec 2021 16:18:54 +0000 Subject: [PATCH] chore: remove removed contributors/tools path (#44374) --- .eslintignore | 1 - jest.config.js | 3 +-- renovate.json | 7 +------ 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.eslintignore b/.eslintignore index e528048818..43257063ee 100644 --- a/.eslintignore +++ b/.eslintignore @@ -3,7 +3,6 @@ client/static/** client/public/** api-server/src/public/** api-server/lib/** -tools/contributor/** tools/scripts/build/ensure-env.js tools/scripts/lint/validate-keys.js tools/scripts/build/tsconfig.tsbuildinfo diff --git a/jest.config.js b/jest.config.js index 19bb834de9..1ac15b043b 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,6 +1,5 @@ module.exports = { - // TODO: remove /tools/dashboard when the tests are configured correctly - testPathIgnorePatterns: ['/node_modules/', '/tools/dashboard'], + testPathIgnorePatterns: ['/node_modules/'], moduleNameMapper: { '\\.(jpg|jpeg|png|svg|woff|woff2)$': '/client/src/__mocks__/fileMock.js', diff --git a/renovate.json b/renovate.json index 8cf5a12cf8..acb4c6d8b1 100644 --- a/renovate.json +++ b/renovate.json @@ -30,10 +30,5 @@ "automerge": true } ], - "ignorePaths": [ - "api-server", - "tools/contributor", - "tools/contributor/dashboard-app/client", - "tools/contributor/dashboard-app/server" - ] + "ignorePaths": ["api-server"] }