-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtslint.json
executable file
·77 lines (77 loc) · 1.86 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"extends": [
"tslint:recommended",
"tslint-eslint-rules",
"tslint-config-prettier"
],
"rulesDirectory": "./tslint",
"linterOptions": {
"exclude": [
"**/*.json"
]
},
"rules": {
"ter-newline-after-var": [true, "always"],
"no-feature-imports": false,
"no-local-feature-imports": false,
"semicolon": {
"options": "never",
"severity": "none"
},
"member-access": {
"options": "no-public"
},
"arrow-parens": false,
"max-classes-per-file": [false],
"interface-name": [false],
"no-console": {
"severity": "warn"
},
"no-empty": false,
"max-line-length": {
"options": [130],
"severity": "none"
},
"no-string-literal": false,
"object-literal-key-quotes": [false],
"only-arrow-functions": [false],
"array-type": [false],
"interface-over-type-literal": false,
"no-empty-interface": false,
"callable-types": false,
"object-literal-sort-keys": false,
"no-var-requires": false,
"member-ordering": [
false
],
"no-unused-variable": {
"options": true,
"severity": "none"
},
"no-unsafe-any": {
"severity": "none"
},
"no-switch-case-fall-through": true,
"prefer-conditional-expression" : {
"severity": "warn"
},
"prefer-object-spread" : {
"severity": "none"
},
"no-duplicate-imports" : {
"severity": "none"
},
"prefer-template": {
"severity": "none"
},
"typedef": {
"options": [
"call-signature",
"property-declaration"
],
"severity": "none"
},
"no-object-literal-type-assertion": true,
"trailing-comma": [true, { "esSpecCompliant": true }]
}
}