chore(rustfmt): change imports_granularity to "Module"

Also includes a Zed config.
This commit is contained in:
Vukašin Vojinović 2026-04-28 17:55:23 +02:00 committed by Jeremy Soller
parent 673e4c949b
commit 17cf4485a9
6 changed files with 55 additions and 39 deletions

15
.zed/settings.json Normal file
View file

@ -0,0 +1,15 @@
{
"format_on_save": "on",
"lsp": {
"rust-analyzer": {
"initialization_options": {
"check": {
"command": "clippy",
},
"rustfmt": {
"extraArgs": ["+nightly"],
},
},
},
},
}