-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathtslint.json
47 lines (47 loc) · 998 Bytes
/
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
{
"extends": "tslint-config-alloy",
"rules": {
"no-parameter-properties": false,
"no-redundant-jsdoc": true,
"triple-equals": false,
"no-debugger": false,
"no-trailing-whitespace": false,
"member-ordering": false,
"no-this-assignment": [
true,
{
"allowed-names": [
"^self$",
"^that$"
],
"allow-destructuring": true
}
],
"no-unused-expression": [
true,
"allow-fast-null-checks",
"allow-new"
],
"only-arrow-functions": [
false,
"allow-declarations",
"allow-named-functions"
],
"no-empty": [
false,
"allow-empty-catch"
],
"no-unnecessary-type-assertion": false,
"return-undefined": false,
"no-for-in-array": false,
"comment-format": [
true,
"check-space"
],
"comment-space": true
},
"rulesDirectory": [
"node_modules/tslint-eslint-rules/dist/rules",
"custom-tslint-rules/dist"
]
}