webstudio/ui/tslint.json

27 lines
564 B
JSON
Raw Permalink Normal View History

2024-12-01 16:12:08 +00:00
{
"eslintConfig": {
"extends": [
"react-app",
"shared-config"
],
"rules": {
"additional-rule": "warn",
"no-extend-native": "off",
"react-hooks/exhaustive-deps": "off",
"array-callback-return": "off"
},
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {
"additional-typescript-only-rule": "warn",
"array-callback-return": "off",
"react-hooks/exhaustive-deps": "off",
"no-extend-native": "off"
}
}
]
}
}