From f2d309b2a73a09dc575af79a693ba283f40b3de9 Mon Sep 17 00:00:00 2001 From: MapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Mon, 10 Jan 2022 16:52:31 -0600 Subject: [PATCH] add eslint override for cypress --- .eslintrc.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 8a53282..7b15bc2 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -14,5 +14,13 @@ "rules": { "import/no-unused-modules": "off", "unicorn/prevent-abbreviations": "off" - } + }, + "overrides": [ + { + "files": ["packages/docs/cypress/**"], + "parserOptions": { + "project": "./packages/docs/cypress/tsconfig.json" + } + } + ] }