-
Notifications
You must be signed in to change notification settings - Fork 902
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3093 from scampi/issue2633
do not vertically align list items in case the tactic is Horizontal
- Loading branch information
Showing
5 changed files
with
61 additions
and
4 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
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// rustfmt-max_width: 79 | ||
// rustfmt-wrap_comments: true | ||
|
||
/// ```rust | ||
/// # #![cfg_attr(not(dox), feature(cfg_target_feature, target_feature, stdsimd)not(dox), feature(cfg_target_feature, target_feature, stdsimd))] | ||
/// | ||
/// // Est lectus hendrerit lorem, eget dignissim orci nisl sit amet massa. Etiam volutpat lobortis eros. | ||
/// let x = 42; | ||
/// ``` | ||
fn func() {} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// rustfmt-struct_field_align_threshold: 5 | ||
|
||
#[derive(Fail, Debug, Clone)] | ||
pub enum BuildError { | ||
LineTooLong { length: usize, limit: usize }, | ||
DisallowedByte { b: u8, pos: usize }, | ||
ContainsNewLine { pos: usize }, | ||
} | ||
|
||
enum Foo { | ||
A { a: usize, bbbbb: () }, | ||
B { a: (), bbbbb: () }, | ||
} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// rustfmt-max_width: 79 | ||
// rustfmt-wrap_comments: true | ||
|
||
/// ```rust | ||
/// # #![cfg_attr(not(dox), feature(cfg_target_feature, target_feature, | ||
/// # stdsimd)not(dox), feature(cfg_target_feature, target_feature, | ||
/// # stdsimd))] | ||
/// | ||
/// // Est lectus hendrerit lorem, eget dignissim orci nisl sit amet massa. | ||
/// // Etiam volutpat lobortis eros. | ||
/// let x = 42; | ||
/// ``` | ||
fn func() {} |