-
Notifications
You must be signed in to change notification settings - Fork 916
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
import reordering options #2185
Comments
In chains.rs, I cannot think of any circumstances where we want doc comment on imports, though assuming that it's irrelevant and reordering imports without doc comment will change the semantic of the original code. So I am afraid that we cannot 'fix' the issue. |
Hmm, that makes sense. I changed the kind of comments in chains.rs, there might be other places we need to that too. |
Using +use self::raw::RawConnection;
+use self::stmt::Statement;
+use self::url::ConnectionOptions;
+use super::backend::Mysql;
use connection::*;
use query_builder::*;
use query_builder::bind_collector::RawBytesBindCollector;
use query_source::{Queryable, QueryableByName};
use result::*;
-use self::raw::RawConnection;
-use self::stmt::Statement;
-use self::url::ConnectionOptions;
-use super::backend::Mysql;
use types::HasSqlType; is this what we want, or should we force alphabetical order? |
@topecongiro I think it makes a lot of sense for |
I think self and super first is a good idea. |
cc #2475 |
#2535 addresses a lot of this. Remaining work is to merge the options and to check behaviour around comments (I believe it is correct, but we need to check). We might consider whether ordering in groups is the correct behaviour to have (I think it is, but I'm not 100% convinced). |
Remaining: check behaviour around comments |
Also need to implement the spec'ed behaviour for nested imports |
The implementation now matches the spec for nested imports, so this issue is done. |
I would like to make
reorder_imports
on by default and merge all five import ordering options into a single one (part of #1974):(currently the third and forth are off by default)
However, we should decide on the precise behaviour and iron out any bugs (current behviour is at least a bit suprising, try changing the defaults and running on chains.rs, for example).
Tasks:
reorder_imports
andreorder_imports_in_group
totrue
, fixup tests and re-format source code (it might be easier to merge these two options before other stuff because it allows to deal with fewer cases).reorder_imports
The format RFCs only state that imports should be ordered alphabetically, but don't specify beyond that (I thought we went into some detail about grouping, but I can't find that discussion).
The grouping thing is that people often group imports using newlines:
Respecting grouping means reordering to:
ignoring grouping would give:
There have also been suggestions that we should actively do some grouping - perhaps separating imports from deps from imports from std and/or imports from the current crate.
I think we should probably respect grouping by newlines, remove more that one newline and not actively group stuff.
What if there are imports lower down in the header? Should they be moved? That should probably be a separate option, but ordering should respect that. I guess at first we should not move (until the option exists).
Should comments group imports? Probably not, but maybe if the comment is more than one line? In any case, we should probably move comments as if they were attached to an import directly below, but not if there are blank lines (in which case there is a group, so we would not move imports above or below). I think this solves the comment/import ordering question.
The text was updated successfully, but these errors were encountered: