Files
nextjs-notion-starter-kit/.eslintrc.json
2024-10-31 20:49:33 -05:00

18 lines
536 B
JSON

{
"root": true,
"extends": ["@fisch0920/eslint-config"],
"rules": {
"react/prop-types": "off",
"unicorn/no-array-reduce": "off",
"unicorn/filename-case": "off",
"no-process-env": "off",
"array-callback-return": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/media-has-caption": "off",
"jsx-a11y/interactive-supports-focus": "off",
"jsx-a11y/anchor-is-valid": "off",
"@typescript-eslint/naming-convention": "off"
}
}