-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
44 lines (44 loc) · 1.06 KB
/
.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module",
"project": "tsconfig.json"
},
"extends": [
"env",
"standard-with-typescript",
"eslint:recommended",
"plugin:security/recommended",
"plugin:jest/recommended",
"plugin:prettier/recommended"
],
"plugins": ["filenames", "optimize-regex", "simple-import-sort"],
"rules": {
"node/no-unsupported-features/es-syntax": 0,
"node/no-missing-import": 0,
"node/file-extension-in-import": 0,
"prettier/prettier": 0,
"@typescript-eslint/restrict-template-expressions": 0,
"no-unneeded-ternary": 0,
"no-console": 1,
"@typescript-eslint/no-floating-promises": 0,
"@typescript-eslint/no-throw-literal": 0,
"prefer-destructuring": 0,
"@typescript-eslint/dot-notation": 1,
"node/handle-callback-err": 0,
"@typescript-eslint/strict-boolean-expressions": 0,
"@typescript-eslint/no-misused-promises": 0,
"jsdoc/check-tag-names": 0
},
"env": {
"node": true,
"es6": true,
"jest/globals": true
},
"settings": {
"jest": {
"version": 26
}
}
}