Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonPierce committed Sep 2, 2024
1 parent be03cc6 commit bfa3b61
Show file tree
Hide file tree
Showing 5 changed files with 158 additions and 600 deletions.
34 changes: 27 additions & 7 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,43 @@
{
"env": {
"browser": true,
"node": true
"node": true,
"es2019": true
},
"extends": ["airbnb-base", "airbnb-typescript/base", "plugin:security/recommended", "plugin:prettier/recommended"],
"plugins": ["security", "prettier"],
"extends": [
"eslint:recommended",
"plugin:security/recommended-legacy",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"no-console": "off",
"func-names": "off",
"no-underscore-dangle": "off",
"consistent-return": "off",
"security/detect-object-injection": "off",
"security/detect-non-literal-regexp": "off",
"import/no-named-as-default-member": "off",
"import/prefer-default-export": "off",
"class-methods-use-this": "off"
}
"class-methods-use-this": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "warn",
"prettier/prettier": "error"
},
"overrides": [
{
"files": ["tests/**/*.ts"],
"env": {
"mocha": true
}
}
]
}
5 changes: 4 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ updates:
directory: "/"
schedule:
interval: "daily"
target-branch: "1.x.x"
target-branch: "1.x.x"
labels:
- "dependencies"
- "1.x.x"
Loading

0 comments on commit bfa3b61

Please sign in to comment.