buster/web/.eslintrc.json

16 lines
312 B
JSON
Raw Normal View History

2025-01-07 03:43:40 +08:00
{
"extends": "next/core-web-vitals",
2025-01-30 01:35:34 +08:00
"env": {
"jest": true,
"node": true
},
2025-01-07 03:43:40 +08:00
"rules": {
"@next/next/no-img-element": "off",
"react-hooks/exhaustive-deps": "off",
"no-unused-vars": "off",
"no-empty-pattern": "off",
"no-undef": "error",
"react/no-children-prop": "off"
}
}