From dda76e7ee174f3b5ec228f73a66274a275de1680 Mon Sep 17 00:00:00 2001 From: Carlos Santiago <5726971+csantiago132@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:21:31 -0500 Subject: [PATCH] chore(config): correctly sets eslint --- .eslintignore | 1 + .eslintrc.cjs | 7 +------ tsconfig.json | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.eslintignore b/.eslintignore index d2be132..e9d5e6a 100644 --- a/.eslintignore +++ b/.eslintignore @@ -4,4 +4,5 @@ codesanbox devcontainer node_modules vitest.config.ts +setup.react.ts diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 9435035..dc437f2 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -23,10 +23,5 @@ module.exports = { }, rules: { 'import/no-cycle': 'off', - }, - overrides: [ - { - files: ['app/**/*.ts', 'app/**/*.tsx'], - }, - ], + } }; diff --git a/tsconfig.json b/tsconfig.json index b9472d9..b2b5c15 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,5 +5,5 @@ "rootDir": "./src", "esModuleInterop": true }, - "exclude": ["node_modules", "vite.config.ts"] + "exclude": ["node_modules", "vite.config.ts", "setup.react.ts"] }