Skip to content

Commit 5b800c0

Browse files
authored
Update Rust formatter configuration (#425)
1 parent 641ef69 commit 5b800c0

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

earthly/rust/stdcfgs/rustfmt.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ match_block_trailing_comma = true
3535
max_width = 100
3636

3737
# Comments:
38-
normalize_comments = true
38+
normalize_comments = false
3939
normalize_doc_attributes = false
4040
wrap_comments = true
4141
comment_width = 90 # small excess is okay but prefer 80
@@ -51,7 +51,7 @@ imports_granularity = "Crate"
5151

5252
# Arguments:
5353
use_small_heuristics = "Default"
54-
fn_params_layout = "Compressed"
54+
fn_params_layout = "Vertical"
5555
overflow_delimited_expr = true
5656
where_single_line = true
5757

examples/rust/crates/bar/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
33
/// Adds two numbers
44
#[must_use]
5-
pub fn add(left: usize, right: usize) -> usize {
5+
pub fn add(
6+
left: usize,
7+
right: usize,
8+
) -> usize {
69
left.saturating_add(right)
710
}
811

examples/rust/crates/foo/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
33
/// Format our hello message nicely.
44
#[must_use]
5-
pub fn fmt_hello(name: &str, count: u8) -> String {
5+
pub fn fmt_hello(
6+
name: &str,
7+
count: u8,
8+
) -> String {
69
format!("Hello #{count:>3} {name}!")
710
}
811

examples/rust/rustfmt.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ match_block_trailing_comma = true
3535
max_width = 100
3636

3737
# Comments:
38-
normalize_comments = true
38+
normalize_comments = false
3939
normalize_doc_attributes = false
4040
wrap_comments = true
4141
comment_width = 90 # small excess is okay but prefer 80
@@ -51,7 +51,7 @@ imports_granularity = "Crate"
5151

5252
# Arguments:
5353
use_small_heuristics = "Default"
54-
fn_params_layout = "Compressed"
54+
fn_params_layout = "Vertical"
5555
overflow_delimited_expr = true
5656
where_single_line = true
5757

0 commit comments

Comments
 (0)