{ "parser": "@typescript-eslint/parser", "extends": [ "plugin:react/recommended", "plugin:@typescript-eslint/recommended", "plugin:react/jsx-runtime" ], "env": { "node": true, "browser": true }, "plugins": ["@typescript-eslint", "react-hooks"], "parserOptions": { //指定ESLint可以解析JSX语法 "ecmaVersion": 2019, "sourceType": "module", "ecmaFeatures": { "jsx": true } }, "rules": { // ... "@typescript-eslint/no-explicit-any": "off", "react/prop-types": "off", "react-hooks/rules-of-hooks": "error", "react-hooks/exhaustive-deps": "warn", "@typescript-eslint/ban-ts-comment": "off" } }