forked from infernojs/inferno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
52 lines (52 loc) · 1.27 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
46
47
48
49
50
51
52
{
"extends": [
"tslint:recommended",
"tslint-config-prettier"
],
"jsRules": {
"arrow-parens": false,
"forin": false,
"max-line-length": [false],
"no-bitwise": false,
"no-console": false,
"no-conditional-assignment": false,
"no-debugger": false,
"no-empty": false,
"no-unused-expression": true,
"object-literal-sort-keys": false,
"one-variable-per-declaration": [true, "ignore-for-loop"],
"only-arrow-functions": false,
"ordered-imports": false,
"prefer-const": true,
"prefer-for-of": false,
"quotemark": false,
"trailing-comma": [true],
"variable-name": false
},
"rules": {
"arrow-parens": false,
"ban-types": false,
"forin": false,
"interface-name": false,
"jsdoc-format": false,
"max-classes-per-file": [true],
"max-line-length": [false],
"member-access": true,
"member-ordering": false,
"no-bitwise": false,
"no-conditional-assignment": false,
"no-debugger": false,
"no-empty": true,
"no-namespace": false,
"no-unused-expression": true,
"object-literal-sort-keys": true,
"one-variable-per-declaration": [true, "ignore-for-loop"],
"only-arrow-functions": false,
"ordered-imports": false,
"prefer-const": true,
"prefer-for-of": false,
"quotemark": false,
"trailing-comma": [true],
"variable-name": false
}
}