-
Notifications
You must be signed in to change notification settings - Fork 403
Expand file tree
/
Copy pathdependabot.yml
More file actions
37 lines (35 loc) · 1.3 KB
/
dependabot.yml
File metadata and controls
37 lines (35 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "npm"
directory: "/"
groups:
all:
patterns:
- "*"
ignore:
- dependency-name: "@stylistic/eslint-plugin"
update-types: ["version-update:semver-major"] # stylistic 3 to avoid esm
- dependency-name: "@types/chai"
update-types: ["version-update:semver-major"] # chai 4 to avoid esm
- dependency-name: "@types/node"
update-types: ["version-update:semver-major"] # Keep Node 18 compatibility
- dependency-name: "@types/tar"
update-types: ["version-update:semver-major"] # tar 6 for source compatibility
- dependency-name: "chai"
update-types: ["version-update:semver-major"] # chai 4 to avoid esm
- dependency-name: "eslint"
update-types: ["version-update:semver-major"] # eslint 8 for `--rulesdir`
- dependency-name: "rimraf"
update-types: ["version-update:semver-major"] # rimraf 5 for Node 18 compatibility
- dependency-name: "tar"
update-types: ["version-update:semver-major"] # tar 6 for source compatibility
schedule:
interval: "weekly"