Files
flood/server/.eslintrc.json
2020-11-15 23:03:47 +08:00

22 lines
424 B
JSON

{
"extends": "../.eslintrc.json",
"rules": {
"no-restricted-imports": [
"error",
{
"patterns": ["**/client/**/*"]
}
],
"no-restricted-modules": [
"error",
{
"patterns": ["**/client/**/*"]
}
],
// TODO: Explicit return type
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/explicit-module-boundary-types": 0
}
}