refactor: frontend improvements

This commit is contained in:
moolcoov
2025-05-06 18:19:22 +08:00
parent 817e0cb021
commit 246412b4c7
11 changed files with 665 additions and 6245 deletions
+9
View File
@@ -3,10 +3,16 @@ import globals from "globals";
import reactHooks from "eslint-plugin-react-hooks";
import reactRefresh from "eslint-plugin-react-refresh";
import tseslint from "typescript-eslint";
import react from "eslint-plugin-react";
export default tseslint.config(
{ ignores: ["dist"] },
{
settings: {
react: {
version: "detect",
},
},
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ["**/*.{ts,tsx}"],
languageOptions: {
@@ -16,10 +22,13 @@ export default tseslint.config(
plugins: {
"react-hooks": reactHooks,
"react-refresh": reactRefresh,
react,
},
rules: {
...reactHooks.configs.recommended.rules,
"react-refresh/only-export-components": 0,
...react.configs.recommended.rules,
...react.configs["jsx-runtime"].rules,
},
},
);