buster/web/.eslintrc.json

18 lines
357 B
JSON
Raw Normal View History

2025-01-07 03:43:40 +08:00
{
2025-02-22 05:13:15 +08:00
"extends": [
"next/core-web-vitals",
"plugin:storybook/recommended"
],
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"
}
2025-02-22 05:13:15 +08:00
}