mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 03:32:23 +08:00
28 lines
590 B
JSON
28 lines
590 B
JSON
{
|
|
"extends": [
|
|
"@antfu",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/consistent-type-definitions": [
|
|
"error",
|
|
"type"
|
|
],
|
|
"no-console": "off",
|
|
"indent": "off",
|
|
"@typescript-eslint/indent": [
|
|
"error",
|
|
2,
|
|
{
|
|
"SwitchCase": 1,
|
|
"flatTernaryExpressions": false,
|
|
"ignoredNodes": [
|
|
"PropertyDefinition[decorators]",
|
|
"TSUnionType",
|
|
"FunctionExpression[params]:has(Identifier[decorators])"
|
|
]
|
|
}
|
|
],
|
|
"react-hooks/exhaustive-deps": "warn"
|
|
}
|
|
} |