Skip to content

Commit

Permalink
feat!: updated to aws sdk v3
Browse files Browse the repository at this point in the history
  • Loading branch information
koblas committed Jul 11, 2023
1 parent c5564b5 commit 8a73332
Show file tree
Hide file tree
Showing 6 changed files with 10,107 additions and 2,171 deletions.
19 changes: 16 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,25 @@
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier"],
"extends": [
"airbnb-typescript/base",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended",
"prettier"
],
"parserOptions": {
"project": "./tsconfig.json"
"project": "./tsconfig-lint.json",
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"es6": true,
"node": true
},
"extends": ["airbnb-typescript/base", "prettier"],
"rules": {
"prettier/prettier": "error",
"import/prefer-default-export": "off",
"no-console": "error",
"@typescript-eslint/no-use-before-define": "off"
}
}

Loading

0 comments on commit 8a73332

Please sign in to comment.