This repository was archived by the owner on Nov 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
80 lines (80 loc) · 1.84 KB
/
tslint.json
File metadata and controls
80 lines (80 loc) · 1.84 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"ban-comma-operator": true,
"class-name": true,
"curly": true,
"encoding": true,
"eofline": true,
"import-spacing": true,
"indent": [
true,
"spaces",
4
],
"member-access": true,
"member-ordering": [
true,
{
"order": "fields-first"
}
],
"newline-before-return": true,
"no-any": false,
"no-bitwise": false,
"no-forin": false,
"no-conditional-assignment": true,
"no-console": [
true,
"log",
"error"
],
"no-construct": true,
"no-duplicate-super": true,
"no-duplicate-switch-case": true,
"no-duplicate-variable": [
true,
"check-parameters"
],
"no-empty": true,
"no-eval": true,
"no-null-keyword": true,
"no-parameter-reassignment": true,
"no-reference": true,
"no-unsafe-finally": true,
"no-use-before-declare": true,
"no-var-keyword": true,
"object-literal-sort-keys": false,
"quotemark": [
true,
"single",
"jsx-double"
],
"semicolon": [
true,
"always"
],
"triple-equals": true,
"use-isnan": true,
"variable-name": [
true,
"allow-pascal-case"
],
"whitespace": [
true,
"check-module"
]
},
"rulesDirectory": [],
"linterOptions": {
"exclude": [
"./code-cov/**/*",
"./__mocks__/**/*",
"./node_modules/**/*"
]
}
}