eslint.config.js 256 B

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