sqs-consumer 5.4.0 → 5.7.0
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/.eslintignore +4 -0
- package/.github/CODEOWNERS +2 -0
- package/.github/CONTRIBUTING.md +39 -0
- package/.github/ISSUE_TEMPLATE/bug-report.md +27 -0
- package/.github/ISSUE_TEMPLATE/feature-request.md +20 -0
- package/.github/ISSUE_TEMPLATE/technical-question.md +17 -0
- package/.github/pull_request_template.md +20 -0
- package/.travis.yml +1 -1
- package/README.md +36 -6
- package/dist/bind.js +2 -1
- package/dist/consumer.d.ts +23 -4
- package/dist/consumer.js +77 -30
- package/dist/errors.js +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +35 -19
- package/src/bind.ts +0 -2
- package/src/consumer.ts +93 -31
- package/src/errors.ts +1 -1
- package/src/index.ts +1 -1
- package/test/consumer.ts +226 -86
- package/tsconfig.json +1 -1
- package/.nyc_output/6b82944a-e1d8-43f1-b7e6-4250bba9eb0c.json +0 -1
- package/.nyc_output/b96929df-d0ad-46a6-83d3-f796728a2d38.json +0 -1
- package/CONTRIBUTING.md +0 -8
- package/issue_template.md +0 -6
- package/test/mocha.opts +0 -5
- package/tslint.json +0 -74
package/tslint.json
DELETED
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": [
|
|
3
|
-
"tslint-microsoft-contrib"
|
|
4
|
-
],
|
|
5
|
-
"parserOptions": {
|
|
6
|
-
"ecmaVersion": 2017
|
|
7
|
-
},
|
|
8
|
-
"rules": {
|
|
9
|
-
"no-magic-numbers": false,
|
|
10
|
-
"variable-name": [
|
|
11
|
-
true,
|
|
12
|
-
"ban-keywords"
|
|
13
|
-
],
|
|
14
|
-
"align": false,
|
|
15
|
-
"max-line-length": false,
|
|
16
|
-
"no-parameter-reassignment": true,
|
|
17
|
-
"trailing-comma": [
|
|
18
|
-
true,
|
|
19
|
-
{
|
|
20
|
-
"multiline": "never",
|
|
21
|
-
"singleline": "never"
|
|
22
|
-
}
|
|
23
|
-
],
|
|
24
|
-
"no-console": true,
|
|
25
|
-
"typedef": [
|
|
26
|
-
true,
|
|
27
|
-
"call-signature",
|
|
28
|
-
"parameter",
|
|
29
|
-
"member-variable-declaration"
|
|
30
|
-
],
|
|
31
|
-
"function-name": false,
|
|
32
|
-
"no-submodule-imports": false,
|
|
33
|
-
"prefer-type-cast": false,
|
|
34
|
-
"match-default-export-name": false,
|
|
35
|
-
"export-name": false,
|
|
36
|
-
"no-default-export": false,
|
|
37
|
-
"no-require-imports": false,
|
|
38
|
-
"ordered-imports": true,
|
|
39
|
-
"no-relative-imports": false,
|
|
40
|
-
"await-promise": false,
|
|
41
|
-
"completed-docs": false,
|
|
42
|
-
"prefer-object-spread": false,
|
|
43
|
-
"no-http-string": false,
|
|
44
|
-
"no-reserved-keywords": false,
|
|
45
|
-
"no-any": false,
|
|
46
|
-
"no-unsafe-any": false,
|
|
47
|
-
"max-classes-per-file": false,
|
|
48
|
-
"non-literal-require": false,
|
|
49
|
-
"underscore-consistent-invocation": false,
|
|
50
|
-
"mocha-no-side-effect-code": false,
|
|
51
|
-
"no-var-requires": false,
|
|
52
|
-
"member-access": false,
|
|
53
|
-
"missing-jsdoc": false,
|
|
54
|
-
"interface-name": false,
|
|
55
|
-
"no-backbone-get-set-outside-model": false,
|
|
56
|
-
"no-multiline-string": false,
|
|
57
|
-
"no-conditional-assignment": true,
|
|
58
|
-
"no-empty": false,
|
|
59
|
-
"newline-before-return": false,
|
|
60
|
-
"array-bracket-spacing": false,
|
|
61
|
-
"no-increment-decrement": false,
|
|
62
|
-
"strict-boolean-expressions": false,
|
|
63
|
-
"newline-per-chained-call": false,
|
|
64
|
-
"mocha-avoid-only": true
|
|
65
|
-
},
|
|
66
|
-
"linterOptions": {
|
|
67
|
-
"exclude": [
|
|
68
|
-
"node_modules",
|
|
69
|
-
"coverage",
|
|
70
|
-
"dist",
|
|
71
|
-
"**/*.json"
|
|
72
|
-
]
|
|
73
|
-
}
|
|
74
|
-
}
|