rtgk-screen-web/.eslintrc.json

20 lines
335 B
JSON
Raw Permalink Normal View History

2024-06-20 11:26:44 +08:00
{
"extends": "next/core-web-vitals",
"rules": {
"react-hooks/exhaustive-deps": "off",
"react/display-name": "off",
"react/jsx-key": "off",
"@next/next/no-sync-scripts": "off",
"react/no-unknown-property": [
2,
{
"ignore": [
"jsx",
"global"
]
}
]
}
}