| 12345678910111213141516171819202122232425262728293031 |
- 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",
- ],
- },
- ],
- },
- },
- ];
|