| 123456789101112 |
- import { nextJsConfig } from "@repo/eslint-config/next-js";
- /** @type {import("eslint").Linter.Config[]} */
- export default [
- ...nextJsConfig,
- {
- rules: {
- "react/prop-types": "off",
- "react/no-unknown-property": ["error", { ignore: ["jsx"] }],
- },
- },
- ];
|