eslint.config.js 277 B

123456789101112
  1. import { nextJsConfig } from "@repo/eslint-config/next-js";
  2. /** @type {import("eslint").Linter.Config[]} */
  3. export default [
  4. ...nextJsConfig,
  5. {
  6. rules: {
  7. "react/prop-types": "off",
  8. "react/no-unknown-property": ["error", { ignore: ["jsx"] }],
  9. },
  10. },
  11. ];