12345678910111213141516171819202122232425262728 |
- {
- "root": true,
- "parser": "@typescript-eslint/parser",
- "env": {
- "es6": true,
- "browser": true
- },
- "plugins": [
- "import",
- "prettier",
- "react",
- "react-hooks",
- "@typescript-eslint"
- ],
- "extends": [
- "eslint:recommended",
- "plugin:@typescript-eslint/recommended",
- "plugin:prettier/recommended"
- ],
- "settings": {
- "react": {
- "version": "detect"
- }
- },
- "rules": {
- "@typescript-eslint/no-explicit-any": "off"
- }
- }
|