Files
gridpilot.gg/apps/website/.eslintrc.json
2025-12-16 11:09:13 +01:00

22 lines
478 B
JSON

{
"extends": "next/core-web-vitals",
"plugins": ["boundaries"],
"rules": {
"react/no-unescaped-entities": "off",
"@next/next/no-img-element": "warn",
"react-hooks/exhaustive-deps": "warn",
"@typescript-eslint/no-explicit-any": "error",
"boundaries/element-types": [
2,
{
"default": "disallow",
"rules": [
{
"from": ["website"],
"allow": ["website"]
}
]
}
]
}
}