allow rustfmt to reorder imports
This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
mod analysis_stats;
|
||||
mod analysis_bench;
|
||||
|
||||
use std::{io::Read, error::Error};
|
||||
use std::{error::Error, io::Read};
|
||||
|
||||
use clap::{App, Arg, SubCommand};
|
||||
use ra_ide_api::{file_structure, Analysis};
|
||||
use ra_syntax::{SourceFile, TreeArc, AstNode};
|
||||
use flexi_logger::Logger;
|
||||
use ra_ide_api::{file_structure, Analysis};
|
||||
use ra_prof::profile;
|
||||
use ra_syntax::{AstNode, SourceFile, TreeArc};
|
||||
|
||||
type Result<T> = std::result::Result<T, Box<dyn Error + Send + Sync>>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user