-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
executable file
·93 lines (93 loc) · 2.15 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint",
"security",
"unicorn",
"promise",
"istanbul",
"jsdoc"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:security/recommended",
"plugin:unicorn/recommended",
"plugin:jsdoc/recommended",
"plugin:json/recommended",
"prettier"
],
"env": {
"browser": false,
"node": true
},
"globals": {
"Promise": true
},
"rules": {
"istanbul/no-ignore-file": "error",
"istanbul/prefer-ignore-reason": "error",
"promise/no-callback-in-promise": "off",
"security/detect-object-injection": "off",
"unicorn/no-array-reduce": "off",
"unicorn/explicit-length-check": [
"error",
{
"non-zero": "not-equal"
}
],
"unicorn/prefer-node-protocol": "off"
},
"overrides": [
{
"files": ["src/test/**", "cucumber.js"],
"parserOptions": {
"sourceType": "module",
"project": "./tsconfig.dev.json"
},
"plugins": [
"@typescript-eslint",
"chai-friendly",
"security",
"unicorn",
"promise",
"istanbul",
"jsdoc"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:chai-friendly/recommended",
"plugin:security/recommended",
"plugin:unicorn/recommended",
"plugin:jsdoc/recommended",
"plugin:json/recommended",
"prettier"
],
"globals": {
"expect": true,
"PendingError": true
},
"rules": {
"security/detect-non-literal-fs-filename": "off",
"jsdoc/require-jsdoc": "off",
"security/detect-object-injection": "off",
"unicorn/no-array-callback-reference": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-module": "off"
}
},
{
"files": ["scripts/**"],
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true
},
"rules": {
// "node/shebang": "off"
}
}
]
}