.eslintrc.json 262 B

123456789
  1. {
  2. "extends": ["next/core-web-vitals", "next/typescript"],
  3. "rules": {
  4. "no-unused-vars": "off",
  5. "@typescript-eslint/no-empty-object-type": "warn",
  6. "@typescript-eslint/no-unused-vars": ["off"],
  7. "@typescript-eslint/no-explicit-any": ["off"]
  8. }
  9. }