Skip to content

Commit 811ae03

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

2 files changed

Lines changed: 20 additions & 2 deletions

File tree

.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: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,14 @@
1818
"packageRules": [
1919
// Group all Github Actions updates in a single PR.
2020
{
21-
"matchManagers": ["github-actions"]
21+
"matchManagers": [
22+
"github-actions"
23+
]
24+
},
25+
{
26+
"matchManagers": [
27+
"nix"
28+
],
2229
}
2330
]
2431
}

0 commit comments

Comments
 (0)