eslint.config.js 276 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. // Disable prop-types - we use TypeScript for type checking
  8. "react/prop-types": "off",
  9. },
  10. },
  11. ];