| 12345678910111213141516171819202122232425262728293031 |
- {
- "root": true,
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "ecmaVersion": 2024,
- "sourceType": "module",
- "ecmaFeatures": {
- "jsx": true
- },
- "project": "./tsconfig.json"
- },
- "env": {
- "browser": true,
- "node": true,
- "es2024": true
- },
- "plugins": ["@typescript-eslint", "react-hooks"],
- "extends": [
- "next/core-web-vitals",
- "eslint:recommended",
- "plugin:@typescript-eslint/recommended",
- "plugin:react-hooks/recommended"
- ],
- "rules": {
- "no-unused-vars": "off",
- "@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
- "@typescript-eslint/consistent-type-imports": "warn",
- "@typescript-eslint/no-explicit-any": "warn",
- "react-hooks/exhaustive-deps": "warn"
- }
- }
|