From 63174ccc8126123e9bff6b58f83cca74ae4a774f Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Wed, 4 Oct 2023 11:37:41 -0400 Subject: [PATCH] disable lint for scenarios since scenarios are not published --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 7ba98bd1c..0dd96cdf4 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -47,7 +47,7 @@ module.exports = { }, }, { - files: ['test-packages/**/*.[jt]s'], + files: ['test-packages/**/*.[jt]s', 'tests/scenarios/**/*.{js,ts}'], rules: { 'import/no-extraneous-dependencies': 'off', },