Skip to content

Use normalized form to format use items #2576

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Apr 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/attr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

//! Format attributes and meta items.

use config::IndentStyle;
use config::lists::*;
use config::IndentStyle;
use syntax::ast;
use syntax::codemap::Span;

Expand Down
2 changes: 1 addition & 1 deletion src/comment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// Formatting and tools for comments.

use std::{self, iter, borrow::Cow};
use std::{self, borrow::Cow, iter};

use itertools::{multipeek, MultiPeek};
use syntax::codemap::Span;
Expand Down
2 changes: 1 addition & 1 deletion src/config/lists.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

//! Configuration options related to rewriting a list.

use config::IndentStyle;
use config::config_type::ConfigType;
use config::IndentStyle;

/// The definitive formatting tactic for lists.
#[derive(Eq, PartialEq, Debug, Copy, Clone)]
Expand Down
Loading