-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
56 lines (56 loc) · 1.53 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
53
54
55
56
{
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-config-prettier"],
"jsRules": {
"curly": false,
"forin": false,
"import-spacing": false,
"label-position": false,
"max-line-length": [false],
"no-bitwise": false,
"no-conditional-assignment": false,
"no-console": [false],
"no-empty": false,
"no-shadowed-variable": false,
"no-string-literal": false,
"no-unused-expression": false,
"object-literal-sort-keys": false,
"one-variable-per-declaration": [false],
"quotemark": ["single"],
"trailing-comma": [false],
"variable-name": [false]
},
"rules": {
"array-type": false,
"ban-types": false,
"class-name": false,
"comment-format": false,
"curly": false,
"forin": false,
"import-spacing": false,
"interface-name": [false],
"jsdoc-format": false,
"label-position": false,
"max-classes-per-file": [false],
"max-line-length": [false],
"member-access": false,
"member-ordering": false,
"no-bitwise": false,
"no-conditional-assignment": false,
"no-console": [false],
"no-empty-interface": false,
"no-empty": false,
"no-namespace": false,
"no-reference": false,
"no-shadowed-variable": false,
"no-string-literal": false,
"no-unused-expression": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"one-variable-per-declaration": [false],
"quotemark": ["single"],
"trailing-comma": [false],
"variable-name": [false]
},
"rulesDirectory": []
}