Skip to content

Commit 6aa5b2b

Browse files
Wallacolooemilio
authored andcommitted
Update rustfmt.toml options for compatibility with modern rustfmt
Running `cargo fmt` or `cargo +nightly fmt` gives the following warnings: ``` Warning: Unknown configuration option `fn_brace_style` Warning: Unknown configuration option `item_brace_style` Warning: Unknown configuration option `struct_lit_multiline_style` Warning: Unknown configuration option `where_trailing_comma` ``` rustfmt changed these options here, and this PR reflects the changes: * `fn_brace_style` and `item_brace_style` were folded into `brace_style`: rust-lang/rustfmt@f8074b3#diff-6d8a5e2104954a026de2bfe2b936aea4R541 * `struct_lit_multiline_style` option was renamed to `struct_lit_single_line`: rust-lang/rustfmt@45d4f7a#diff-9de0a570da3404ffd4b364ef6a9f8195L1749 * `where_trailing_comma` was removed, but appears to have no replacement: rust-lang/rustfmt@6a58d91#diff-6d8a5e2104954a026de2bfe2b936aea4L369 So I left it in. Running `cargo fmt` over the bindgen codebase produces a _lot_ of changes, so I haven't done that. But I think it'd be a good idea to do it at some point: opening PRs against a project that has its own rustfmt.toml file but doesn't seem to follow it is a confusing process.
1 parent d55cce5 commit 6aa5b2b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

rustfmt.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
max_width = 80
2-
fn_brace_style = "SameLineWhere"
3-
item_brace_style = "SameLineWhere"
4-
struct_lit_multiline_style = "ForceMulti"
2+
brace_style = "SameLineWhere"
3+
struct_lit_single_line = false
54
where_trailing_comma = true
65
normalize_comments = false

0 commit comments

Comments
 (0)