changed lines from rustfmting. Squashed commit of the following: commit e90f9da64bbdb640b8c9ee61c3ad395617d8b4da Author: Chris Emerson <github@mail.nosreme.org> Date: Sat Jan 20 20:10:16 2018 +0000 Fix tests after merging with master. commit c3af0042769fe459b0c9c94a0934605ea4b40e40 Merge: 03868583e0e3e222
Author: Chris Emerson <github@mail.nosreme.org> Date: Sat Jan 20 17:45:05 2018 +0000 Merge remote-tracking branch 'origin/master' into HEAD commit 03868583f8555aae30bdfb5839a82afd3704f4cb Author: Chris Emerson <github@mail.nosreme.org> Date: Mon Nov 20 01:57:56 2017 +0000 Fix some warnings. commit 162b13463e44c782394d418db5ca5710931beb7a Author: Chris Emerson <github@mail.nosreme.org> Date: Mon Nov 20 01:48:02 2017 +0000 Remove unneeded import. commit 20cce3cbfd0f386d92b80bf4c7b83ab4d78a73e7 Merge: 81e98147fa794f58
Author: Chris Emerson <github@mail.nosreme.org> Date: Mon Nov 20 01:07:17 2017 +0000 Merge branch 'master' into difflines_mode commit 81e981472ceb3a0938d6f050edf8dcd5ebff8e33 Author: Chris Emerson <github@mail.nosreme.org> Date: Mon Nov 20 01:02:50 2017 +0000 Add a simple "modified lines" test. commit 018390ced3523ca9fdd5384a6c1004cdb99174a9 Author: Chris Emerson <github@mail.nosreme.org> Date: Thu Nov 2 23:06:21 2017 +0000 Update test output. commit 7909f4986ed21999aff7b3d075332e686ac464ff Author: Chris Emerson <github@mail.nosreme.org> Date: Thu Nov 2 23:03:22 2017 +0000 Rerun rustfmt. commit 6275f1a8da52db1df36c4b7432996cdbb94ca463 Merge: 7a66d286175c0c6f
Author: Chris Emerson <github@mail.nosreme.org> Date: Thu Nov 2 21:40:29 2017 +0000 Merge remote-tracking branch 'origin/master' into difflines_mode commit 7a66d2866432c430b046938bb37bf5efc03fa9da Author: Chris Emerson <github@mail.nosreme.org> Date: Thu Nov 2 21:36:40 2017 +0000 WIP: Add a separate API to get changed lines. Currently calls format_input() and adjusts the output. commit c8163a923c7d9ae42fd8078cd9b2b51c6f73e36e Author: Chris Emerson <github@mail.nosreme.org> Date: Fri Oct 27 22:53:33 2017 +0100 Remove "modified" from the documentation again. commit 94041fa115a6f428afe40e01d41bf2fe603f70bb Merge: acaa3c7c2adf7eec
Author: Chris Emerson <github@mail.nosreme.org> Date: Fri Oct 27 22:47:05 2017 +0100 Merge branch 'master' into difflines_mode commit acaa3c7ce446297cd3fe5c9610763629a2d8537c Author: Chris Emerson <github@mail.nosreme.org> Date: Tue Oct 24 23:34:14 2017 +0100 Update the Modified write mode to use `out` instead of just prinln!(). This means we can test it more easily, so do so. commit 9f1bbca1f3c12d933ea823918cc548e69b438b1e Author: Chris Emerson <github@mail.nosreme.org> Date: Tue Oct 24 23:11:55 2017 +0100 Add "Modified" to the various lists of modes. commit e12f023756cf3daf202dcaa02bd6492b0d2a0455 Author: Chris Emerson <github@mail.nosreme.org> Date: Tue Oct 24 22:57:33 2017 +0100 Rerun cargo fmt. commit 0f8a43630fa1548e95dcb1c0933708f9c11ae135 Author: Chris Emerson <github@mail.nosreme.org> Date: Tue Oct 24 22:46:26 2017 +0100 Add `line_number_orig` to instances of `Mismatch` in tests. commit d432a7061f74dbc159584f08470c64985a4b41d9 Author: Chris Emerson <github@mail.nosreme.org> Date: Tue Oct 24 22:41:40 2017 +0100 Add a `line_number_orig` field to `Mismatch` to track the pre-format line number. Use that for the write-mode=modified output. commit bdb7d1d23f02f7b8f18e7073a65be88ff94cdbb3 Author: Chris Emerson <github@mail.nosreme.org> Date: Tue Oct 24 22:35:50 2017 +0100 First basic --write-mode=modified implementation. commit ea1433dae0c32879a31182c11be08b1bf53fbf31 Author: Chris Emerson <github@mail.nosreme.org> Date: Fri Oct 20 00:04:16 2017 +0100 WIP on new "modified" mode. commit 27ee9483cf937a11a0e115f54de0afcc3f9ceb44 Merge:e48dd81a
2a84352d
Author: Chris Emerson <github@mail.nosreme.org> Date: Tue Oct 24 21:56:44 2017 +0100 Merge remote-tracking branch 'jc/diff_zero_context' into difflines_mode
29 KiB
Configuring Rustfmt
Rustfmt is designed to be very configurable. You can create a TOML file called rustfmt.toml
or .rustfmt.toml
, place it in the project or any other parent directory and it will apply the options in that file.
A possible content of rustfmt.toml
or .rustfmt.toml
might look like this:
indent_style = "Block"
reorder_imported_names = true
Each configuration option is either stable or unstable.
Stable options can be used directly, while unstable options are opt-in.
To enable unstable options, set unstable_features = true
in rustfmt.toml
or pass --unstable-options
to rustfmt.
Configuration Options
Below you find a detailed visual guide on all the supported configuration options of rustfmt:
indent_style
Indent on expressions or items.
- Default value:
"Block"
- Possible values:
"Block"
,"Visual"
- Stable: No
Array
"Block"
(default):
let lorem = vec![
"ipsum",
"dolor",
"sit",
"amet",
"consectetur",
"adipiscing",
"elit",
];
"Visual"
:
let lorem = vec!["ipsum",
"dolor",
"sit",
"amet",
"consectetur",
"adipiscing",
"elit"];
Control flow
"Block"
(default):
if lorem_ipsum &&
dolor_sit &&
amet_consectetur
{
// ...
}
"Visual"
:
if lorem_ipsum &&
dolor_sit &&
amet_consectetur {
// ...
}
See also: control_brace_style
.
Function arguments
"Block"
(default):
fn lorem() {}
fn lorem(ipsum: usize) {}
fn lorem(
ipsum: usize,
dolor: usize,
sit: usize,
amet: usize,
consectetur: usize,
adipiscing: usize,
elit: usize,
) {
// body
}
"Visual"
:
fn lorem() {}
fn lorem(ipsum: usize) {}
fn lorem(ipsum: usize,
dolor: usize,
sit: usize,
amet: usize,
consectetur: usize,
adipiscing: usize,
elit: usize) {
// body
}
Function calls
"Block"
(default):
lorem(
"lorem",
"ipsum",
"dolor",
"sit",
"amet",
"consectetur",
"adipiscing",
"elit",
);
"Visual"
:
lorem("lorem",
"ipsum",
"dolor",
"sit",
"amet",
"consectetur",
"adipiscing",
"elit");
Generics
"Block"
(default):
fn lorem<
Ipsum: Eq = usize,
Dolor: Eq = usize,
Sit: Eq = usize,
Amet: Eq = usize,
Adipiscing: Eq = usize,
Consectetur: Eq = usize,
Elit: Eq = usize
>(
ipsum: Ipsum,
dolor: Dolor,
sit: Sit,
amet: Amet,
adipiscing: Adipiscing,
consectetur: Consectetur,
elit: Elit,
) -> T {
// body
}
"Visual"
:
fn lorem<Ipsum: Eq = usize,
Dolor: Eq = usize,
Sit: Eq = usize,
Amet: Eq = usize,
Adipiscing: Eq = usize,
Consectetur: Eq = usize,
Elit: Eq = usize>
(ipsum: Ipsum,
dolor: Dolor,
sit: Sit,
amet: Amet,
adipiscing: Adipiscing,
consectetur: Consectetur,
elit: Elit)
-> T {
// body
}
Struct
"Block"
(default):
let lorem = Lorem {
ipsum: dolor,
sit: amet,
};
"Visual"
:
let lorem = Lorem { ipsum: dolor,
sit: amet, };
See also: struct_lit_single_line
, indent_style
.
Where predicates
"Block"
(default):
fn lorem<Ipsum, Dolor, Sit, Amet>() -> T
where
Ipsum: Eq,
Dolor: Eq,
Sit: Eq,
Amet: Eq
{
// body
}
"Visual"
:
fn lorem<Ipsum, Dolor, Sit, Amet>() -> T
where Ipsum: Eq,
Dolor: Eq,
Sit: Eq,
Amet: Eq
{
// body
}
use_small_heuristics
Whether to use different formatting for items and expressions if they satisfy a heuristic notion of 'small'.
- Default value:
true
- Possible values:
true
,false
- Stable: No
true
(default):
enum Lorem {
Ipsum,
Dolor(bool),
Sit { amet: Consectetur, adipiscing: Elit },
}
fn main() {
lorem(
"lorem",
"ipsum",
"dolor",
"sit",
"amet",
"consectetur",
"adipiscing",
);
let lorem = Lorem { ipsum: dolor, sit: amet };
let lorem = if ipsum { dolor } else { sit };
}
false
:
enum Lorem {
Ipsum,
Dolor(bool),
Sit {
amet: Consectetur,
adipiscing: Elit,
},
}
fn main() {
lorem("lorem", "ipsum", "dolor", "sit", "amet", "consectetur", "adipiscing");
let lorem = Lorem {
ipsum: dolor,
sit: amet,
};
let lorem = if ipsum {
dolor
} else {
sit
};
}
binop_separator
Where to put a binary operator when a binary expression goes multiline.
- Default value:
"Front"
- Possible values:
"Front"
,"Back"
- Stable: No
"Front"
(default):
let or = foo
|| bar
|| foobar;
let sum = 1234
+ 5678
+ 910;
let range = aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
..bbbbbbbbbbbbbbbbbbbbbbbbbbbbb;
"Back"
:
fn main() {
let or = foofoofoofoofoofoofoofoofoofoofoofoofoofoofoofoo ||
barbarbarbarbarbarbarbarbarbarbarbarbarbarbarbar;
let sum = 123456789012345678901234567890 + 123456789012345678901234567890 +
123456789012345678901234567890;
let range = aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa..
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb;
}
combine_control_expr
Combine control expressions with function calls.
- Default value:
true
- Possible values:
true
,false
- Stable: No
true
(default):
fn example() {
// If
foo!(if x {
foo();
} else {
bar();
});
// IfLet
foo!(if let Some(..) = x {
foo();
} else {
bar();
});
// While
foo!(while x {
foo();
bar();
});
// WhileLet
foo!(while let Some(..) = x {
foo();
bar();
});
// ForLoop
foo!(for x in y {
foo();
bar();
});
// Loop
foo!(loop {
foo();
bar();
});
}
false
:
fn example() {
// If
foo!(
if x {
foo();
} else {
bar();
}
);
// IfLet
foo!(
if let Some(..) = x {
foo();
} else {
bar();
}
);
// While
foo!(
while x {
foo();
bar();
}
);
// WhileLet
foo!(
while let Some(..) = x {
foo();
bar();
}
);
// ForLoop
foo!(
for x in y {
foo();
bar();
}
);
// Loop
foo!(
loop {
foo();
bar();
}
);
}
comment_width
Maximum length of comments. No effect unlesswrap_comments = true
.
- Default value:
80
- Possible values: any positive integer
- Stable: No
Note: A value of 0
results in wrap_comments
being applied regardless of a line's width.
80
(default; comments shorter than comment_width
):
// Lorem ipsum dolor sit amet, consectetur adipiscing elit.
60
(comments longer than comment_width
):
// Lorem ipsum dolor sit amet,
// consectetur adipiscing elit.
See also wrap_comments
.
condense_wildcard_suffixes
Replace strings of _ wildcards by a single .. in tuple patterns
- Default value:
false
- Possible values:
true
,false
- Stable: No
false
(default):
let (lorem, ipsum, _, _) = (1, 2, 3, 4);
true
:
let (lorem, ipsum, ..) = (1, 2, 3, 4);
control_brace_style
Brace style for control flow constructs
- Default value:
"AlwaysSameLine"
- Possible values:
"AlwaysNextLine"
,"AlwaysSameLine"
,"ClosingNextLine"
- Stable: No
"AlwaysSameLine"
(default):
if lorem {
println!("ipsum!");
} else {
println!("dolor!");
}
"AlwaysNextLine"
:
if lorem
{
println!("ipsum!");
}
else
{
println!("dolor!");
}
"ClosingNextLine"
:
if lorem {
println!("ipsum!");
}
else {
println!("dolor!");
}
disable_all_formatting
Don't reformat anything
- Default value:
false
- Possible values:
true
,false
- Stable: No
error_on_line_overflow
Error if unable to get all lines within max_width
- Default value:
true
- Possible values:
true
,false
- Stable: No
See also max_width
.
error_on_line_overflow_comments
Error if unable to get all comment lines within comment_width
.
- Default value:
true
- Possible values:
true
,false
- Stable: No
See also comment_width
.
fn_args_density
Argument density in functions
- Default value:
"Tall"
- Possible values:
"Compressed"
,"Tall"
,"Vertical"
- Stable: No
"Tall"
(default):
trait Lorem {
fn lorem(ipsum: Ipsum, dolor: Dolor, sit: Sit, amet: Amet);
fn lorem(ipsum: Ipsum, dolor: Dolor, sit: Sit, amet: Amet) {
// body
}
fn lorem(
ipsum: Ipsum,
dolor: Dolor,
sit: Sit,
amet: Amet,
consectetur: Consectetur,
adipiscing: Adipiscing,
elit: Elit,
);
fn lorem(
ipsum: Ipsum,
dolor: Dolor,
sit: Sit,
amet: Amet,
consectetur: Consectetur,
adipiscing: Adipiscing,
elit: Elit,
) {
// body
}
}
"Compressed"
:
trait Lorem {
fn lorem(ipsum: Ipsum, dolor: Dolor, sit: Sit, amet: Amet);
fn lorem(ipsum: Ipsum, dolor: Dolor, sit: Sit, amet: Amet) {
// body
}
fn lorem(
ipsum: Ipsum, dolor: Dolor, sit: Sit, amet: Amet, consectetur: Consectetur,
adipiscing: Adipiscing, elit: Elit,
);
fn lorem(
ipsum: Ipsum, dolor: Dolor, sit: Sit, amet: Amet, consectetur: Consectetur,
adipiscing: Adipiscing, elit: Elit,
) {
// body
}
}
"Vertical"
:
trait Lorem {
fn lorem(ipsum: Ipsum,
dolor: Dolor,
sit: Sit,
amet: Amet);
fn lorem(ipsum: Ipsum,
dolor: Dolor,
sit: Sit,
amet: Amet) {
// body
}
fn lorem(ipsum: Ipsum,
dolor: Dolor,
sit: Sit,
amet: Amet,
consectetur: Consectetur,
adipiscing: Adipiscing,
elit: Elit);
fn lorem(ipsum: Ipsum,
dolor: Dolor,
sit: Sit,
amet: Amet,
consectetur: Consectetur,
adipiscing: Adipiscing,
elit: Elit) {
// body
}
}
brace_style
Brace style for items
- Default value:
"SameLineWhere"
- Possible values:
"AlwaysNextLine"
,"PreferSameLine"
,"SameLineWhere"
- Stable: No
Functions
"SameLineWhere"
(default):
fn lorem() {
// body
}
fn lorem(ipsum: usize) {
// body
}
fn lorem<T>(ipsum: T)
where
T: Add + Sub + Mul + Div,
{
// body
}
"AlwaysNextLine"
:
fn lorem()
{
// body
}
fn lorem(ipsum: usize)
{
// body
}
fn lorem<T>(ipsum: T)
where
T: Add + Sub + Mul + Div,
{
// body
}
"PreferSameLine"
:
fn lorem() {
// body
}
fn lorem(ipsum: usize) {
// body
}
fn lorem<T>(ipsum: T)
where
T: Add + Sub + Mul + Div, {
// body
}
Structs and enums
"SameLineWhere"
(default):
struct Lorem {
ipsum: bool,
}
struct Dolor<T>
where T: Eq
{
sit: T,
}
"AlwaysNextLine"
:
struct Lorem
{
ipsum: bool,
}
struct Dolor<T>
where T: Eq
{
sit: T,
}
"PreferSameLine"
:
struct Lorem {
ipsum: bool,
}
struct Dolor<T>
where T: Eq {
sit: T,
}
empty_item_single_line
Put empty-body functions and impls on a single line
- Default value:
true
- Possible values:
true
,false
- Stable: No
true
(default):
fn lorem() {}
impl Lorem {}
false
:
fn lorem() {
}
impl Lorem {
}
See also brace_style
, control_brace_style
.
fn_single_line
Put single-expression functions on a single line
- Default value:
false
- Possible values:
true
,false
- Stable: No
false
(default):
fn lorem() -> usize {
42
}
fn lorem() -> usize {
let ipsum = 42;
ipsum
}
true
:
fn lorem() -> usize { 42 }
fn lorem() -> usize {
let ipsum = 42;
ipsum
}
See also control_brace_style
.
where_single_line
To force single line where layout
- Default value:
false
- Possible values:
true
,false
- Stable: No
false
(default):
impl<T> Lorem for T
where
Option<T>: Ipsum,
{
...
}
true
:
impl<T> Lorem for T
where Option<T>: Ipsum {
...
}
See also brace_style
, control_brace_style
.
force_explicit_abi
Always print the abi for extern items
- Default value:
true
- Possible values:
true
,false
- Stable: Yes
Note: Non-"C" ABIs are always printed. If false
then "C" is removed.
true
(default):
extern "C" {
pub static lorem: c_int;
}
false
:
extern {
pub static lorem: c_int;
}
format_strings
Format string literals where necessary
- Default value:
false
- Possible values:
true
,false
- Stable: No
false
(default):
let lorem = "ipsum dolor sit amet consectetur adipiscing elit lorem ipsum dolor sit";
true
:
let lorem =
"ipsum dolor sit amet consectetur \
adipiscing elit lorem ipsum dolor sit";
See also max_width
.
hard_tabs
Use tab characters for indentation, spaces for alignment
- Default value:
false
- Possible values:
true
,false
- Stable: Yes
false
(default):
fn lorem() -> usize {
42 // spaces before 42
}
true
:
fn lorem() -> usize {
42 // tabs before 42
}
See also: tab_spaces
.
imports_indent
Indent style of imports
- Default Value:
"Visual"
- Possible values:
"Block"
,"Visual"
- Stable: No
"Visual"
(default):
use foo::{xxx,
yyy,
zzz};
"Block"
:
use foo::{
xxx,
yyy,
zzz,
};
See also: imports_layout
.
imports_layout
Item layout inside a imports block
- Default value: "Mixed"
- Possible values: "Horizontal", "HorizontalVertical", "Mixed", "Vertical"
- Stable: No
"Mixed"
(default):
use foo::{xxx, yyy, zzz};
use foo::{aaa, bbb, ccc,
ddd, eee, fff};
"Horizontal"
:
Note: This option forces all imports onto one line and may exceed max_width
.
use foo::{xxx, yyy, zzz};
use foo::{aaa, bbb, ccc, ddd, eee, fff};
"HorizontalVertical"
:
use foo::{xxx, yyy, zzz};
use foo::{aaa,
bbb,
ccc,
ddd,
eee,
fff};
"Vertical"
:
use foo::{xxx,
yyy,
zzz};
use foo::{aaa,
bbb,
ccc,
ddd,
eee,
fff};
match_block_trailing_comma
Put a trailing comma after a block based match arm (non-block arms are not affected)
- Default value:
false
- Possible values:
true
,false
- Stable: No
false
(default):
match lorem {
Lorem::Ipsum => {
println!("ipsum");
}
Lorem::Dolor => println!("dolor"),
}
true
:
match lorem {
Lorem::Ipsum => {
println!("ipsum");
},
Lorem::Dolor => println!("dolor"),
}
See also: trailing_comma
, match_arm_blocks
.
max_width
Maximum width of each line
- Default value:
100
- Possible values: any positive integer
- Stable: Yes
See also error_on_line_overflow
.
merge_derives
Merge multiple derives into a single one.
- Default value:
true
- Possible values:
true
,false
- Stable: Yes
true
(default):
#[derive(Eq, PartialEq, Debug, Copy, Clone)]
pub enum Foo {}
false
:
#[derive(Eq, PartialEq)]
#[derive(Debug)]
#[derive(Copy, Clone)]
pub enum Foo {}
force_multiline_blocks
Force multiline closure and match arm bodies to be wrapped in a block
- Default value:
false
- Possible values:
false
,true
- Stable: No
false
(default):
result.and_then(|maybe_value| match maybe_value {
None => ...,
Some(value) => ...,
})
match lorem {
None => if ipsum {
println!("Hello World");
},
Some(dolor) => ...,
}
true
:
result.and_then(|maybe_value| {
match maybe_value {
None => ...,
Some(value) => ...,
}
})
match lorem {
None => {
if ipsum {
println!("Hello World");
}
}
Some(dolor) => ...,
}
newline_style
Unix or Windows line endings
- Default value:
"Unix"
- Possible values:
"Native"
,"Unix"
,"Windows"
- Stable: Yes
normalize_comments
Convert /* */ comments to // comments where possible
- Default value:
false
- Possible values:
true
,false
- Stable: Yes
false
(default):
// Lorem ipsum:
fn dolor() -> usize {}
/* sit amet: */
fn adipiscing() -> usize {}
true
:
// Lorem ipsum:
fn dolor() -> usize {}
// sit amet:
fn adipiscing() -> usize {}
reorder_imported_names
Reorder lists of names in import statements alphabetically
- Default value:
false
- Possible values:
true
,false
- Stable: No
false
(default):
use super::{lorem, ipsum, dolor, sit};
true
:
use super::{dolor, ipsum, lorem, sit};
See also reorder_imports
.
reorder_imports
Reorder import statements alphabetically
- Default value:
false
- Possible values:
true
,false
- Stable: No
false
(default):
use lorem;
use ipsum;
use dolor;
use sit;
true
:
use dolor;
use ipsum;
use lorem;
use sit;
See also reorder_imported_names
, reorder_imports_in_group
.
reorder_imports_in_group
Reorder import statements in group
- Default value:
false
- Possible values:
true
,false
- Stable: No
Note: This option takes effect only when reorder_imports
is set to true
.
false
(default):
use std::mem;
use std::io;
use lorem;
use ipsum;
use dolor;
use sit;
true
:
use std::io;
use std::mem;
use dolor;
use ipsum;
use lorem;
use sit;
See also reorder_imports
.
reorder_extern_crates
Reorder extern crate
statements alphabetically
- Default value:
true
- Possible values:
true
,false
- Stable: No
true
(default):
extern crate dolor;
extern crate ipsum;
extern crate lorem;
extern crate sit;
false
:
extern crate lorem;
extern crate ipsum;
extern crate dolor;
extern crate sit;
See also reorder_extern_crates_in_group
.
reorder_extern_crates_in_group
Reorder extern crate
statements in group
- Default value:
true
- Possible values:
true
,false
- Stable: No
Note: This option takes effect only when reorder_imports
is set to true
.
true
(default):
extern crate a;
extern crate b;
extern crate dolor;
extern crate ipsum;
extern crate lorem;
extern crate sit;
false
:
extern crate b;
extern crate a;
extern crate lorem;
extern crate ipsum;
extern crate dolor;
extern crate sit;
See also reorder_extern_crates
.
report_todo
Report TODO
items in comments.
- Default value:
"Never"
- Possible values:
"Always"
,"Unnumbered"
,"Never"
- Stable: No
Warns about any comments containing TODO
in them when set to "Always"
. If
it contains a #X
(with X
being a number) in parentheses following the
TODO
, "Unnumbered"
will ignore it.
See also report_fixme
.
report_fixme
Report FIXME
items in comments.
- Default value:
"Never"
- Possible values:
"Always"
,"Unnumbered"
,"Never"
- Stable: No
Warns about any comments containing FIXME
in them when set to "Always"
. If
it contains a #X
(with X
being a number) in parentheses following the
FIXME
, "Unnumbered"
will ignore it.
See also report_todo
.
skip_children
Don't reformat out of line modules
- Default value:
false
- Possible values:
true
,false
- Stable: No
space_after_colon
Leave a space after the colon.
- Default value:
true
- Possible values:
true
,false
- Stable: No
true
(default):
fn lorem<T: Eq>(t: T) {
let lorem: Dolor = Lorem {
ipsum: dolor,
sit: amet,
};
}
false
:
fn lorem<T:Eq>(t:T) {
let lorem:Dolor = Lorem {
ipsum:dolor,
sit:amet,
};
}
See also: space_before_colon
.
space_before_colon
Leave a space before the colon.
- Default value:
false
- Possible values:
true
,false
- Stable: No
false
(default):
fn lorem<T: Eq>(t: T) {
let lorem: Dolor = Lorem {
ipsum: dolor,
sit: amet,
};
}
true
:
fn lorem<T : Eq>(t : T) {
let lorem : Dolor = Lorem {
ipsum : dolor,
sit : amet,
};
}
See also: space_after_colon
.
struct_field_align_threshold
The maximum diff of width between struct fields to be aligned with each other.
- Default value : 0
- Possible values: any positive integer
- Stable: No
0
(default):
struct Foo {
x: u32,
yy: u32,
zzz: u32,
}
20
:
struct Foo {
x: u32,
yy: u32,
zzz: u32,
}
spaces_around_ranges
Put spaces around the .. and ... range operators
- Default value:
false
- Possible values:
true
,false
- Stable: No
false
(default):
let lorem = 0..10;
true
:
let lorem = 0 .. 10;
spaces_within_parens_and_brackets
Put spaces within non-empty generic arguments, parentheses, and square brackets
- Default value:
false
- Possible values:
true
,false
- Stable: No
false
(default):
// generic arguments
fn lorem<T: Eq>(t: T) {
// body
}
// non-empty parentheses
fn lorem<T: Eq>(t: T) {
let lorem = (ipsum, dolor);
}
// non-empty square brackets
let lorem: [usize; 2] = [ipsum, dolor];
true
:
// generic arguments
fn lorem< T: Eq >(t: T) {
// body
}
// non-empty parentheses
fn lorem<T: Eq>( t: T ) {
let lorem = ( ipsum, dolor );
}
// non-empty square brackets
let lorem: [ usize; 2 ] = [ ipsum, dolor ];
struct_lit_single_line
Put small struct literals on a single line
- Default value:
true
- Possible values:
true
,false
- Stable: No
true
(default):
let lorem = Lorem { ipsum: dolor, sit: amet };
false
:
let lorem = Lorem {
ipsum: dolor,
sit: amet,
};
See also: indent_style
.
tab_spaces
Number of spaces per tab
- Default value:
4
- Possible values: any positive integer
- Stable: Yes
4
(default):
fn lorem() {
let ipsum = dolor();
let sit = vec![
"amet consectetur adipiscing elit."
];
}
2
:
fn lorem() {
let ipsum = dolor();
let sit = vec![
"amet consectetur adipiscing elit."
];
}
See also: hard_tabs
.
trailing_comma
How to handle trailing commas for lists
- Default value:
"Vertical"
- Possible values:
"Always"
,"Never"
,"Vertical"
- Stable: No
"Vertical"
(default):
let Lorem { ipsum, dolor, sit } = amet;
let Lorem {
ipsum,
dolor,
sit,
amet,
consectetur,
adipiscing,
} = elit;
"Always"
:
let Lorem { ipsum, dolor, sit, } = amet;
let Lorem {
ipsum,
dolor,
sit,
amet,
consectetur,
adipiscing,
} = elit;
"Never"
:
let Lorem { ipsum, dolor, sit } = amet;
let Lorem {
ipsum,
dolor,
sit,
amet,
consectetur,
adipiscing
} = elit;
See also: match_block_trailing_comma
.
trailing_semicolon
Add trailing semicolon after break, continue and return
- Default value:
true
- Possible values:
true
,false
- Stable: No
true
(default):
fn foo() -> usize {
return 0;
}
false
:
fn foo() -> usize {
return 0
}
type_punctuation_density
Determines if +
or =
are wrapped in spaces in the punctuation of types
- Default value:
"Wide"
- Possible values:
"Compressed"
,"Wide"
- Stable: No
"Wide"
(default):
fn lorem<Ipsum: Dolor + Sit = Amet>() {
// body
}
"Compressed"
:
fn lorem<Ipsum: Dolor+Sit=Amet>() {
// body
}
use_try_shorthand
Replace uses of the try! macro by the ? shorthand
- Default value:
false
- Possible values:
true
,false
- Stable: No
false
(default):
let lorem = try!(ipsum.map(|dolor|dolor.sit()));
true
:
let lorem = ipsum.map(|dolor| dolor.sit())?;
wrap_comments
Break comments to fit on the line
- Default value:
false
- Possible values:
true
,false
- Stable: Yes
false
(default):
// Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
true
:
// Lorem ipsum dolor sit amet, consectetur adipiscing elit,
// sed do eiusmod tempor incididunt ut labore et dolore
// magna aliqua. Ut enim ad minim veniam, quis nostrud
// exercitation ullamco laboris nisi ut aliquip ex ea
// commodo consequat.
match_arm_blocks
Wrap the body of arms in blocks when it does not fit on the same line with the pattern of arms
- Default value:
true
- Possible values:
true
,false
- Stable: No
true
(default):
match lorem {
true => {
foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo(x)
}
false => println!("{}", sit),
}
false
:
match lorem {
true =>
foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo(x),
false => println!("{}", sit),
}
See also: match_block_trailing_comma
.
write_mode
What Write Mode to use when none is supplied: Replace, Overwrite, Display, Diff, Coverage
- Default value:
"Overwrite"
- Possible values:
"Checkstyle"
,"Coverage"
,"Diff"
,"Display"
,"Overwrite"
,"Plain"
,"Replace"
,"Modified"
- Stable: No
blank_lines_upper_bound
Maximum number of blank lines which can be put between items. If more than this number of consecutive empty lines are found, they are trimmed down to match this integer.
- Default value:
1
- Possible values: unsigned integer
- Stable: No
Example
Original Code:
fn foo() {
println!("a");
}
fn bar() {
println!("b");
println!("c");
}
1
(default):
fn foo() {
println!("a");
}
fn bar() {
println!("b");
println!("c");
}
2
(default):
fn foo() {
println!("a");
}
fn bar() {
println!("b");
println!("c");
}
See also: blank_lines_lower_bound
blank_lines_lower_bound
Minimum number of blank lines which must be put between items. If two items have fewer blank lines between them, additional blank lines are inserted.
- Default value:
0
- Possible values: unsigned integer
- Stable: No
Example
Original Code (rustfmt will not change it with the default value of 0
):
fn foo() {
println!("a");
}
fn bar() {
println!("b");
println!("c");
}
1
fn foo() {
println!("a");
}
fn bar() {
println!("b");
println!("c");
}