Skip to content

Commit

Permalink
fix[deps]: update typescript-eslint and dependabot config
Browse files Browse the repository at this point in the history
- fix issues caused by new linting rules
- **hopefully** prevent dependabot from opening PRs for major version
  changes
  • Loading branch information
RalphORama committed Oct 30, 2024
1 parent 6012f14 commit 45f5d66
Show file tree
Hide file tree
Showing 7 changed files with 1,328 additions and 1,481 deletions.
14 changes: 8 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@ version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
open-pull-requests-limit: 2
assignees:
- "ralphorama"
schedule:
interval: "weekly"
day: "monday"
interval: "monthly"
time: "18:00"
timezone: "America/New_York"
groups:
Expand All @@ -21,9 +19,13 @@ updates:
dependency-type: "development"
update-types:
- "minor"
- "patch"
ignore:
- dependency-name: "dotenv"
# Not sure why dependabot keeps trying to bump stuff by major versions
# but it's ticking me off!!
- dependency-name: "*"
update-types: ["version-update:major"]
commit-message:
prefix: "dependabot (npm)"
prefix-development: "dependabot (npm dev)"
include: "scope"
prefix: "npm (prod)"
prefix-development: "npm (dev)"
Loading

0 comments on commit 45f5d66

Please sign in to comment.