Skip to content

Commit

Permalink
Upgrade to latest dependencies (#842)
Browse files Browse the repository at this point in the history
* fix(deps): update all deps.
* filter/blacklist node-fetch 3.0.0 and serialize-error 9.0.0 as it requires ESM.
* remove deprecated `eslint-config-commercetools` from project and adapt to airbnb-base eslint.

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: aoz <bilmuhahmet@gmail.com>
  • Loading branch information
3 people committed Dec 8, 2021
1 parent 9200bc9 commit 87379f2
Show file tree
Hide file tree
Showing 7 changed files with 1,455 additions and 4,195 deletions.
13 changes: 10 additions & 3 deletions extension/.eslintrc
@@ -1,8 +1,12 @@
{
"extends": ["commercetools", "prettier"],
"extends": ["airbnb-base", "prettier"],
"parserOptions": {
"ecmaVersion": 2021
},
"env": {
"es6": true,
"node": true
"node": true,
"mocha": true
},
"rules": {
"nonblock-statement-body-position": "off",
Expand All @@ -23,6 +27,9 @@
"indent": "off",
"operator-linebreak": "off",
"no-await-in-loop": "off",
"prefer-destructuring": "off"
"prefer-destructuring": "off",
"no-use-before-define": [ 2, "nofunc" ],
"no-underscore-dangle": "off",
"dot-notation": "off"
}
}

0 comments on commit 87379f2

Please sign in to comment.