-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
45 lines (45 loc) · 1.23 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
{
"extends": [
"tslint:recommended",
"tslint-config-prettier",
"tslint-config-standard",
"tslint-react"
],
"linterOptions": {
"exclude": [
"src/contracts/ABIs/*.json",
"src/contracts/bindings/*.ts",
"config/**/*.js",
"node_modules/**/*.ts"
]
},
"rules": {
"quotemark": [
true,
"double",
"jsx-double"
],
"interface-name": false,
"jsx-boolean-value": false,
"max-classes-per-file": false,
"no-console": false,
"no-empty-interface": false,
"no-var-requires": false,
"object-literal-sort-keys": false,
"no-implicit-dependencies": false,
"ordered-imports": true,
"no-object-literal-type-assertion": true,
"semicolon": true,
"eofline": true,
"no-non-null-assertion": true,
"ter-indent": false,
"space-before-function-paren": false,
"trailing-comma": true,
"strict-type-predicates": true,
"no-floating-promises": true,
"no-any": true,
"typedef": [true],
"no-unused-variable": true,
"indent": [true, "spaces", 4]
}
}