You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: editors/code/package.json
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -714,12 +714,12 @@
714
714
"default": true,
715
715
"type": "boolean"
716
716
},
717
-
"rust-analyzer.imports.enforceGranularity": {
717
+
"rust-analyzer.imports.granularity.enforce": {
718
718
"markdownDescription": "Whether to enforce the import granularity setting for all files. If set to false rust-analyzer will try to keep import styles consistent per file.",
719
719
"default": false,
720
720
"type": "boolean"
721
721
},
722
-
"rust-analyzer.imports.granularity": {
722
+
"rust-analyzer.imports.granularity.group": {
723
723
"markdownDescription": "How imports should be grouped into use statements.",
724
724
"default": "crate",
725
725
"type": "string",
@@ -736,12 +736,12 @@
736
736
"Flatten imports so that each has its own use statement."
737
737
]
738
738
},
739
-
"rust-analyzer.imports.group": {
739
+
"rust-analyzer.imports.group.enable": {
740
740
"markdownDescription": "Group inserted imports by the [following order](https://rust-analyzer.github.io/manual.html#auto-import). Groups are separated by newlines.",
741
741
"default": true,
742
742
"type": "boolean"
743
743
},
744
-
"rust-analyzer.imports.mergeIntoGlob": {
744
+
"rust-analyzer.imports.merge.glob": {
745
745
"markdownDescription": "Whether to allow import insertion to merge new imports into single path glob imports like `use std::fmt::*;`.",
0 commit comments