diff options
Diffstat (limited to 'src/frontend/eslint.config.js')
| -rw-r--r-- | src/frontend/eslint.config.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/eslint.config.js b/src/frontend/eslint.config.js index 2439911..9414644 100644 --- a/src/frontend/eslint.config.js +++ b/src/frontend/eslint.config.js @@ -1,13 +1,13 @@ import js from "@eslint/js"; -import globals from "globals"; import reactHooks from "eslint-plugin-react-hooks"; import reactRefresh from "eslint-plugin-react-refresh"; +import globals from "globals"; import tseslint from "typescript-eslint"; export default tseslint.config( { ignores: ["dist", "build", ".react-router", "node_modules"] }, { - extends: [js.configs.recommended, ...tseslint.configs.recommended], + extends: [js.configs.recommended], files: ["**/*.{ts,tsx}"], languageOptions: { ecmaVersion: 2020, |
