resting-squirrel-controller 2.6.0 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +224 -224
- package/dist/controller.d.ts +257 -257
- package/dist/controller.js +373 -379
- package/dist/controller.js.map +1 -1
- package/dist/decorators/controller-options.d.ts +17 -17
- package/dist/decorators/controller-options.js +15 -15
- package/dist/decorators/deprecated.d.ts +3 -3
- package/dist/decorators/deprecated.js +10 -10
- package/dist/decorators/methods.d.ts +6 -6
- package/dist/decorators/methods.js +107 -107
- package/dist/decorators/options.d.ts +25 -25
- package/dist/decorators/options.js +17 -17
- package/dist/decorators/resource.d.ts +3 -3
- package/dist/decorators/resource.js +7 -7
- package/dist/decorators/version.d.ts +3 -3
- package/dist/decorators/version.js +7 -7
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -4
- package/dist/utils.d.ts +194 -193
- package/dist/utils.js +31 -31
- package/package.json +66 -66
- package/index.js +0 -1
- package/tslint.json +0 -78
package/tslint.json
DELETED
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "tslint:recommended",
|
|
3
|
-
"rulesDirectory": [
|
|
4
|
-
"src/"
|
|
5
|
-
],
|
|
6
|
-
"rules": {
|
|
7
|
-
"max-line-length": {
|
|
8
|
-
"options": [
|
|
9
|
-
120
|
|
10
|
-
]
|
|
11
|
-
},
|
|
12
|
-
"new-parens": true,
|
|
13
|
-
"no-arg": true,
|
|
14
|
-
"no-bitwise": true,
|
|
15
|
-
"no-conditional-assignment": true,
|
|
16
|
-
"no-consecutive-blank-lines": false,
|
|
17
|
-
"no-console": {
|
|
18
|
-
"severity": "warning",
|
|
19
|
-
"options": [
|
|
20
|
-
"debug",
|
|
21
|
-
"info",
|
|
22
|
-
"log",
|
|
23
|
-
"time",
|
|
24
|
-
"timeEnd",
|
|
25
|
-
"trace"
|
|
26
|
-
]
|
|
27
|
-
},
|
|
28
|
-
"quotemark": [
|
|
29
|
-
true,
|
|
30
|
-
"single",
|
|
31
|
-
"jsx-double"
|
|
32
|
-
],
|
|
33
|
-
"array-type": false,
|
|
34
|
-
"variable-name": {
|
|
35
|
-
"options": [
|
|
36
|
-
"ban-keywords",
|
|
37
|
-
"check-format",
|
|
38
|
-
"allow-leading-underscore",
|
|
39
|
-
"allow-pascal-case"
|
|
40
|
-
]
|
|
41
|
-
},
|
|
42
|
-
"indent": [
|
|
43
|
-
true,
|
|
44
|
-
"tabs",
|
|
45
|
-
4
|
|
46
|
-
],
|
|
47
|
-
"member-ordering": [
|
|
48
|
-
true,
|
|
49
|
-
{
|
|
50
|
-
"order": [
|
|
51
|
-
"public-static-field",
|
|
52
|
-
"protected-static-field",
|
|
53
|
-
"private-static-field",
|
|
54
|
-
"public-static-method",
|
|
55
|
-
"protected-static-method",
|
|
56
|
-
"private-static-method",
|
|
57
|
-
"public-instance-field",
|
|
58
|
-
"protected-instance-field",
|
|
59
|
-
"private-instance-field",
|
|
60
|
-
"public-constructor",
|
|
61
|
-
"private-constructor",
|
|
62
|
-
"public-instance-method",
|
|
63
|
-
"protected-instance-method",
|
|
64
|
-
"private-instance-method"
|
|
65
|
-
]
|
|
66
|
-
}
|
|
67
|
-
]
|
|
68
|
-
},
|
|
69
|
-
"jsRules": {
|
|
70
|
-
"no-empty": true,
|
|
71
|
-
"max-line-length": {
|
|
72
|
-
"options": [
|
|
73
|
-
120
|
|
74
|
-
]
|
|
75
|
-
}
|
|
76
|
-
},
|
|
77
|
-
"allowJs": true
|
|
78
|
-
}
|