-
Notifications
You must be signed in to change notification settings - Fork 15
/
tslint.json
62 lines (62 loc) · 1.61 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
57
58
59
60
61
62
{
"defaultSeverity": "error",
"extends": [
"tslint:all",
"tslint-config-standard",
"tslint-immutable",
"tslint-config-prettier"
],
"jsRules": {},
"rules": {
"object-literal-sort-keys": false,
"ordered-imports": false,
"file-name-casing": [
true,
"kebab-case"
],
"interface-over-type-literal": false,
"prefer-method-signature": false,
"member-ordering": false,
"no-magic-numbers": false,
"newline-before-return": false,
"no-use-before-declare": false,
"unnecessary-else": false,
"completed-docs": false,
"no-void-expression": false,
"strict-comparisons": false,
"strict-boolean-expressions": [
false
],
"no-var-keyword": true,
"no-parameter-reassignment": true,
"typedef": true,
"quotemark": [
true,
"single"
],
"max-line-length": [
true,
250
],
"readonly-keyword": false,
"no-let": false,
"no-object-mutation": true,
"no-delete": true,
"no-method-signature": true,
"no-non-null-assertion": false,
"no-this": false,
"no-class": false,
"no-mixed-interface": true,
"no-throw": false,
"no-try": false,
"no-reject": true,
"prettier": true,
"no-any": false,
"no-console": false,
"prefer-template": false,
"no-unsafe-any": false
},
"rulesDirectory": [
"tslint-plugin-prettier"
]
}