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", // React Three Fiber properties "args", "position", "rotation", "intensity", "distance", "metalness", "roughness", "emissive", "emissiveIntensity", "wireframe", "transparent", ], }, ], }, }, ];