mirror of
https://github.com/outline/outline.git
synced 2026-01-06 11:09:55 -06:00
31 lines
503 B
Plaintext
31 lines
503 B
Plaintext
{
|
|
"extends": [
|
|
"../.eslintrc"
|
|
],
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"rules": {
|
|
"@typescript-eslint/no-misused-promises": [
|
|
"error",
|
|
{
|
|
"checksVoidReturn": true
|
|
}
|
|
],
|
|
"no-restricted-imports": ["error", {
|
|
"paths": ["fetch-with-proxy", "node-fetch"]
|
|
}]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["scripts/*"],
|
|
"rules": {
|
|
"no-console": "off"
|
|
}
|
|
}
|
|
],
|
|
"env": {
|
|
"jest": true,
|
|
"node": true
|
|
}
|
|
} |