12345678910111213141516171819 |
- {
- "rules": {
- "no-undef": "off",
- "@typescript-eslint/ban-types": "off",
- "react/prop-types": "off",
- "react/react-in-jsx-scope": "off",
- "import/extensions": "off",
- "import/no-unresolved": "off",
- "import/no-extraneous-dependencies": "off"
- },
- "overrides": [
- {
- "files": ["nextjs/**/*.@(jsx|tsx)"],
- "rules": {
- "react/no-unknown-property": "off"
- }
- }
- ]
- }
|