Skip to content

Commit

Permalink
Ignore eslint major versions (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
acoburn authored Aug 13, 2024
1 parent db731c5 commit c20eca6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,24 @@ updates:
- package-ecosystem: "npm"
# Look for `package.json` and `lock` files in the `root` directory.
directory: "/"
# Check the npm registry for updates every day (weekdays).
schedule:
interval: "weekly"
ignore:
- dependency-name: "eslint"
update-types: ["version-update:semver-major"]
# Enable version updates for our CI tooling.
- package-ecosystem: "github-actions"
# For GitHub Actions, setting the directory to / will check for workflow
# files in .github/workflows.
directory: "/"
# Check the npm registry for updates every day (weekdays).
schedule:
interval: "weekly"
# Enable version updates for embedded demo app
- package-ecosystem: "npm"
# Look for `package.json` and `package-lock.json` files in the `e2e/browser/test-app` directory.
directory: "/e2e/test-app"
# Check the npm registry for updates every day (weekdays).
schedule:
interval: "weekly"
ignore:
- dependency-name: "eslint"
update-types: ["version-update:semver-major"]

0 comments on commit c20eca6

Please sign in to comment.