-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
don't use unstable feature on rustfmt yet
- Loading branch information
1 parent
a52f239
commit 32bb932
Showing
1 changed file
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
comment_width = 100 | ||
doc_comment_code_block_width = 100 | ||
format_code_in_doc_comments = true | ||
group_imports = "StdExternalCrate" | ||
imports_granularity = "Crate" | ||
# Uncomment these when they become stabilized by Rust | ||
#comment_width = 100 | ||
#doc_comment_code_block_width = 100 | ||
#format_code_in_doc_comments = true | ||
#group_imports = "StdExternalCrate" | ||
#imports_granularity = "Crate" | ||
#wrap_comments = true | ||
|
||
max_width = 100 | ||
use_small_heuristics = "Max" | ||
wrap_comments = true | ||
# Workaround for https://github.com/rust-lang/rust.vim/issues/464 | ||
edition = "2021" |