-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
28 lines (28 loc) · 866 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:node/recommended", "prettier"],
"plugins": ["@typescript-eslint", "node", "prettier"],
"env": {
"jasmine": true,
"jest": true,
"node": true
},
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/switch-exhaustiveness-check": "error",
"no-constant-condition": ["error", { "checkLoops": false }],
"node/no-missing-import": "off",
"node/no-unsupported-features/es-syntax": "off",
"no-process-exit": "off"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"modules": true
},
"project": "./tsconfig.json",
"sourceType": "module"
}
}