mirror of
https://github.com/zoriya/flood.git
synced 2025-12-05 23:06:20 +00:00
22 lines
424 B
JSON
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
|
|
}
|
|
}
|