diff --git a/.eslintrc.json b/.eslintrc.json index b5970964..34fc5c83 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -16,10 +16,10 @@ "plugin:react-hooks/recommended" ], "parser": "@typescript-eslint/parser", - "parserOptions": { - "project": "./tsconfig.eslint.json" - }, - "plugins": ["@typescript-eslint/eslint-plugin"], + // "parserOptions": { + // "project": "./tsconfig.eslint.json" + // }, + "plugins": ["@typescript-eslint"], "rules": { "react/react-in-jsx-scope": "off", "@typescript-eslint/explicit-function-return-type": "off", diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json index 9893d4f7..211c13ac 100644 --- a/tsconfig.eslint.json +++ b/tsconfig.eslint.json @@ -1,3 +1,5 @@ +/* 10-16-23: This file currently isn't being used for linting, as it's typically only for monorepos. +Since we want all typescript files to be linted with the same rules, we don't need it! */ { "extends": "./tsconfig.json", "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"]