forked from ArkEcosystem/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
25 lines (25 loc) · 702 Bytes
/
Copy pathtslint.json
File metadata and controls
25 lines (25 loc) · 702 Bytes
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
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"rules": {
"ban": [
true,
{
"name": ["assert", "equal"],
"message": "Use 'strictEqual' instead."
},
{
"name": ["*", "forEach"],
"message": "Use a regular for loop instead."
}
],
"await-promise": true,
"no-console": false,
"no-default-export": true,
"no-null-keyword": true,
"no-shadowed-variable": false,
"object-literal-sort-keys": false,
"only-arrow-functions": true,
"radix": false,
"return-undefined": true
}
}