mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Adds rustfmt configs to wrap and limit comment width (#1603)
Aims to close https://github.com/bevyengine/bevy/issues/1594. These options are unstable and depend on the following PR's: [wrap_comments](https://rust-lang.github.io/rustfmt/?version=v1.4.36&search=#wrap_comments): https://github.com/rust-lang/rustfmt/issues/3347 [comment_width](https://rust-lang.github.io/rustfmt/?version=v1.4.36&search=#comment_width): https://github.com/rust-lang/rustfmt/issues/3349 [normalize_comments](https://rust-lang.github.io/rustfmt/?version=v1.4.36&search=#normalize_comments): https://github.com/rust-lang/rustfmt/issues/3350 @alice-i-cecile do you think this will solve the issue? When enabled, running the formatter locally should take the configurations into account to format comments. `--check` runs should also be considering them. This should be testable on the `nightly` toolchain. ~I didn't delve into normalizing `//` vs `/* */` though, should I take a look into that too? [normalize_comments](https://rust-lang.github.io/rustfmt/?version=v1.4.36&search=#normalize_comments) seems to be the solution for that but it's also unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/3350). I can also add this configuration (commented out, of course) if it's desirable.~ Added `normalize_comments` option.
This commit is contained in:
parent
e9a501e6b8
commit
1e42de64af
1 changed files with 3 additions and 0 deletions
|
@ -6,3 +6,6 @@ newline_style = "Unix"
|
|||
#unstable_features = true
|
||||
#imports_granularity = "Crate"
|
||||
#reorder_impl_items = true
|
||||
#wrap_comments = true
|
||||
#comment_width = 100
|
||||
#normalize_comments = true
|
||||
|
|
Loading…
Reference in a new issue