From 7a2503e556818bb7022930e078630bb06099df58 Mon Sep 17 00:00:00 2001 From: Oliver Bryan <65399431+hex248@users.noreply.github.com> Date: Sun, 8 Feb 2026 07:18:09 +0000 Subject: [PATCH] Delete eslint.config.js --- eslint.config.js | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 eslint.config.js diff --git a/eslint.config.js b/eslint.config.js deleted file mode 100644 index 82b005fd..00000000 --- a/eslint.config.js +++ /dev/null @@ -1,23 +0,0 @@ -import js from "@eslint/js"; -import { defineConfig, globalIgnores } from "eslint/config"; -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 defineConfig([ - globalIgnores(["dist"]), - { - files: ["**/*.{ts,tsx}"], - extends: [ - js.configs.recommended, - tseslint.configs.recommended, - reactHooks.configs.flat.recommended, - reactRefresh.configs.vite, - ], - languageOptions: { - ecmaVersion: 2020, - globals: globals.browser, - }, - }, -]);