Skip to content

Commit

Permalink
fix(dependencies): update dependencies
Browse files Browse the repository at this point in the history
* fix dependencies (security)
* update TS version

see #251
  • Loading branch information
Retro64 committed Jan 29, 2021
1 parent df3c89e commit 06fc752
Show file tree
Hide file tree
Showing 6 changed files with 1,108 additions and 972 deletions.
14 changes: 7 additions & 7 deletions .eslintrc.js
Expand Up @@ -252,7 +252,11 @@ module.exports = {
"no-prototype-builtins": [
"error"
],
"no-redeclare": "error",
"no-redeclare": "off",
"@typescript-eslint/no-redeclare": [
"error", {
"ignoreDeclarationMerge": true
}],
"no-regex-spaces": [
"error"
],
Expand Down Expand Up @@ -355,12 +359,8 @@ module.exports = {
"no-eval": "error",
"no-multiple-empty-lines": "error",
"no-new-wrappers": "error",
"no-shadow": [
"error",
{
"hoist": "all"
}
],
"no-shadow": "off",
"@typescript-eslint/no-shadow": ["error"],
"no-trailing-spaces": "error",
"no-underscore-dangle": "off",
"no-unused-expressions": 0,
Expand Down

0 comments on commit 06fc752

Please sign in to comment.