chat-flow/.eslintrc.json

18 lines
353 B
JSON
Raw Normal View History

2025-07-29 08:45:22 +08:00
{
"root": true,
"plugins": [
"@typescript-eslint"
],
"extends": [
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"react-hooks/exhaustive-deps": "off",
"no-console": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off"
}
}