.eslintrc.json
582 bytes
| 1 | { |
|---|---|
| 2 | "extends": ["next/core-web-vitals", "next/typescript", "prettier"], |
| 3 | "rules": { |
| 4 | "@typescript-eslint/no-unused-vars": [ |
| 5 | "error", |
| 6 | { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" } |
| 7 | ], |
| 8 | "@typescript-eslint/consistent-type-imports": [ |
| 9 | "warn", |
| 10 | { "prefer": "type-imports", "fixStyle": "inline-type-imports" } |
| 11 | ], |
| 12 | "@typescript-eslint/no-explicit-any": "warn", |
| 13 | "react/no-unescaped-entities": "off" |
| 14 | }, |
| 15 | "ignorePatterns": [ |
| 16 | "node_modules/", |
| 17 | ".next/", |
| 18 | "next-env.d.ts", |
| 19 | "src/generated/", |
| 20 | "prisma/generated/" |
| 21 | ] |
| 22 | } |
| 23 | |