| 12345678910111213141516171819202122232425 |
- {
- "root": true,
- "env": {
- "browser": true
- },
- "extends": [
- "eslint:recommended",
- "plugin:@typescript-eslint/recommended",
- "plugin:react/recommended",
- "plugin:react-hooks/recommended"
- ],
- "parser": "@typescript-eslint/parser",
- "plugins": ["@typescript-eslint", "prettier", "react", "react-hooks"],
- "settings": {
- "react": {
- "version": "detect"
- }
- },
- "rules": {
- "@typescript-eslint/ban-ts-comment": "off",
- "@typescript-eslint/no-explicit-any": "off",
- "@typescript-eslint/no-unused-vars": "off",
- "react/no-unescaped-entities": ["error", { "forbid": [">"] }]
- }
- }
|