forked from MrLuit/evm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
45 lines (45 loc) · 1.11 KB
/
tslint.json
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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-prettier",
"tslint-no-unused-expression-chai"
],
"jsRules": {
"quotemark": false,
"max-line-length": false,
"trailing-comma": false,
"object-literal-sort-keys": false
},
"rules": {
"quotemark": false,
"trailing-comma": false,
"object-literal-sort-keys": false,
"arrow-return-shorthand": true,
"prefer-method-signature": true,
"arrow-parens": false,
"no-unnecessary-type-assertion": true,
"array-type": [true, "array"],
"interface-name": false,
"no-duplicate-imports": true,
"no-console": false,
"no-var-requires": false,
"comment-format": false,
"ordered-imports": false,
"no-conditional-assignment": false,
"no-bitwise": false,
"max-classes-per-file": false,
"member-access": [true, "no-public"],
"no-unused-expression-chai": true
},
"linterOptions": {
"exclude": [
"*.json",
"**/*.json"
]
},
"rulesDirectory": [
"node_modules/tslint-microsoft-contrib",
"node_modules/tslint-no-unused-expression-chai"
]
}