Skip to content

Commit 4a56f62

Browse files
committed
feat(renovate): group nix dependencies
1 parent 04127aa commit 4a56f62

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

.vscode/settings.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,26 @@
11
{
2+
"editor.tabSize": 2,
3+
"editor.formatOnSave": true,
24
"files.associations": {
35
"*.json5": "jsonc",
46
},
7+
"[json][jsonc]": {
8+
"editor.defaultFormatter": "vscode.json-language-features",
9+
"editor.indentSize": "tabSize",
10+
},
11+
"[rust]": {
12+
"editor.tabSize": 4,
13+
},
514
"rust-analyzer.cargo.features": "all",
615
"rust-analyzer.check.command": "clippy",
716
"nix.serverPath": "nil",
817
"nix.enableLanguageServer": true,
918
"nix.serverSettings": {
1019
"nil": {
1120
"formatting": {
12-
"command": ["nixpkgs-fmt"]
21+
"command": [
22+
"nixpkgs-fmt"
23+
]
1324
}
1425
}
1526
},

renovate.json5

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
44
"config:recommended",
5-
"group:allNonMajor",
6-
"helpers:pinGitHubActionDigests"
5+
"group:allNonMajor"
76
],
87
"branchPrefix": "chore/renovate-",
98
"rebaseWhen": "behind-base-branch",
@@ -18,7 +17,14 @@
1817
"packageRules": [
1918
// Group all Github Actions updates in a single PR.
2019
{
21-
"matchManagers": ["github-actions"]
20+
"matchManagers": [
21+
"github-actions"
22+
]
23+
},
24+
{
25+
"matchManagers": [
26+
"nix"
27+
]
2228
}
2329
]
2430
}

0 commit comments

Comments
 (0)