.eslintrc.json 416 B

12345678910111213141516171819
  1. {
  2. "rules": {
  3. "no-undef": "off",
  4. "@typescript-eslint/ban-types": "off",
  5. "react/prop-types": "off",
  6. "react/react-in-jsx-scope": "off",
  7. "import/extensions": "off",
  8. "import/no-unresolved": "off",
  9. "import/no-extraneous-dependencies": "off"
  10. },
  11. "overrides": [
  12. {
  13. "files": ["nextjs/**/*.@(jsx|tsx)"],
  14. "rules": {
  15. "react/no-unknown-property": "off"
  16. }
  17. }
  18. ]
  19. }