koatty_store 1.4.7 → 1.5.2
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/.eslintrc.js +2 -1
- package/.vscode/launch.json +25 -0
- package/CHANGELOG.md +2 -6
- package/LICENSE +1 -1
- package/babel.config.js +0 -5
- package/dist/index.d.ts +19 -28
- package/dist/index.js +11 -20
- package/dist/index.js.map +1 -1
- package/dist/{memory.d.ts → store/memory.d.ts} +8 -41
- package/dist/{memory.js → store/memory.js} +12 -56
- package/dist/store/memory.js.map +1 -0
- package/dist/store/memory_cache.d.ts +553 -0
- package/dist/store/memory_cache.js +1149 -0
- package/dist/store/memory_cache.js.map +1 -0
- package/dist/store/redis.d.ts +73 -0
- package/dist/store/redis.js +228 -0
- package/dist/store/redis.js.map +1 -0
- package/dist/{redis.d.ts → store.d.ts} +36 -105
- package/dist/store.js +383 -0
- package/dist/store.js.map +1 -0
- package/jest.config.js +19 -1
- package/jest_html_reporters.html +1 -1
- package/package.json +19 -21
- package/tsconfig.json +4 -4
- package/dist/memory.js.map +0 -1
- package/dist/redis.js +0 -545
- package/dist/redis.js.map +0 -1
- package/tslint.json +0 -85
- package/yarn-error.log +0 -6080
package/tslint.json
DELETED
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": [
|
|
3
|
-
"tslint-config-alloy"
|
|
4
|
-
],
|
|
5
|
-
"linterOptions": {
|
|
6
|
-
"exclude": [
|
|
7
|
-
"**/node_modules/**"
|
|
8
|
-
]
|
|
9
|
-
},
|
|
10
|
-
"rules": {
|
|
11
|
-
"class-name": true,
|
|
12
|
-
"comment-format": [
|
|
13
|
-
false,
|
|
14
|
-
"check-space"
|
|
15
|
-
],
|
|
16
|
-
"indent": [
|
|
17
|
-
true,
|
|
18
|
-
"spaces"
|
|
19
|
-
],
|
|
20
|
-
"one-line": [
|
|
21
|
-
true,
|
|
22
|
-
"check-open-brace",
|
|
23
|
-
"check-whitespace"
|
|
24
|
-
],
|
|
25
|
-
"no-var-keyword": true,
|
|
26
|
-
"quotemark": [
|
|
27
|
-
false,
|
|
28
|
-
"single",
|
|
29
|
-
"avoid-escape"
|
|
30
|
-
],
|
|
31
|
-
"semicolon": [
|
|
32
|
-
true,
|
|
33
|
-
"always",
|
|
34
|
-
"ignore-bound-class-methods"
|
|
35
|
-
],
|
|
36
|
-
"whitespace": [
|
|
37
|
-
true,
|
|
38
|
-
"check-branch",
|
|
39
|
-
"check-decl",
|
|
40
|
-
"check-operator",
|
|
41
|
-
"check-module",
|
|
42
|
-
"check-separator",
|
|
43
|
-
"check-type"
|
|
44
|
-
],
|
|
45
|
-
"typedef-whitespace": [
|
|
46
|
-
true,
|
|
47
|
-
{
|
|
48
|
-
"call-signature": "nospace",
|
|
49
|
-
"index-signature": "nospace",
|
|
50
|
-
"parameter": "nospace",
|
|
51
|
-
"property-declaration": "nospace",
|
|
52
|
-
"variable-declaration": "nospace"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"call-signature": "onespace",
|
|
56
|
-
"index-signature": "onespace",
|
|
57
|
-
"parameter": "onespace",
|
|
58
|
-
"property-declaration": "onespace",
|
|
59
|
-
"variable-declaration": "onespace"
|
|
60
|
-
}
|
|
61
|
-
],
|
|
62
|
-
"no-internal-module": true,
|
|
63
|
-
"no-trailing-whitespace": false,
|
|
64
|
-
"no-null-keyword": false,
|
|
65
|
-
"prefer-const": true,
|
|
66
|
-
"jsdoc-format": true,
|
|
67
|
-
"no-redundant-jsdoc": false,
|
|
68
|
-
"ordered-imports": false,
|
|
69
|
-
"no-empty": false,
|
|
70
|
-
"eofline": false,
|
|
71
|
-
"trailing-comma": true,
|
|
72
|
-
"no-var-requires": false,
|
|
73
|
-
"no-magic-numbers": false,
|
|
74
|
-
"only-arrow-functions": false,
|
|
75
|
-
"type-literal-delimiter": false,
|
|
76
|
-
"no-parameter-reassignment": false,
|
|
77
|
-
"no-angle-bracket-type-assertion": false,
|
|
78
|
-
"member-access": false,
|
|
79
|
-
"member-ordering": false,
|
|
80
|
-
"linebreak-style": [
|
|
81
|
-
false,
|
|
82
|
-
"windows"
|
|
83
|
-
]
|
|
84
|
-
}
|
|
85
|
-
}
|