generated from JS-DevTools/template-node-typescript
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathdependabot.yaml
38 lines (35 loc) · 969 Bytes
/
dependabot.yaml
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
38
# See the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
# Update npm dependencies
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
groups:
lint:
patterns:
- "*eslint*"
- "*prettier*"
- "*types*"
production:
dependency-type: "production"
development:
dependency-type: "development"
ignore:
# TODO(mcous, 2024-07-06): update to ESLint v9 + flat config
- dependency-name: "eslint"
versions: [">=9"]
# rimraf dropped support for ESLint v18
- dependency-name: "rimraf"
versions: [">=6"]
# Update GitHub Actions dependencies
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
groups:
actions:
patterns:
- "*"