Skip to content

Commit b64276d

Browse files
authored
Merge pull request #36 from digitalcube/master
aws sdk v3
2 parents aa79508 + e737de6 commit b64276d

20 files changed

+6017
-4592
lines changed

.eslintrc.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@ extends:
33
- plugin:@typescript-eslint/recommended
44
plugins:
55
- "@typescript-eslint"
6+
- n
67

78
parser: "@typescript-eslint/parser"
89
env:
9-
es6: true
10+
es2022: true
1011
node: true
1112
parserOptions:
1213
sourceType: 'module'
13-
ecmaFeatures:
14-
ts: true
14+
ecmaVersion: 2022
15+
project: './tsconfig.json'
1516
globals:
1617
describe: false
1718
it: false
@@ -22,4 +23,6 @@ globals:
2223
jasmine: false
2324
expect: false
2425
rules:
25-
"@typescript-eslint/explicit-function-return-type": off
26+
"@typescript-eslint/explicit-function-return-type": "off"
27+
"@typescript-eslint/no-unused-vars": "error"
28+
"@typescript-eslint/no-explicit-any": "warn"

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ node_modules/
44
coverage/
55
.idea/
66
dist/
7-
examples/
87
.rpt2_cache/
98

109
yarn-error.log

0 commit comments

Comments
 (0)