Prefer add mod
declaration to lib.rs over file.rs in UnlinkedFile fix
This commit is contained in:
parent
77a447dcda
commit
c9e479870b
@ -63,7 +63,7 @@ fn fix(&self, sema: &hir::Semantics<RootDatabase>) -> Option<Fix> {
|
||||
// - `$dir.rs` in the parent folder, where `$dir` is the directory containing `self.file_id`
|
||||
let parent = our_path.parent()?;
|
||||
let mut paths =
|
||||
vec![parent.join("mod.rs")?, parent.join("main.rs")?, parent.join("lib.rs")?];
|
||||
vec![parent.join("mod.rs")?, parent.join("lib.rs")?, parent.join("main.rs")?];
|
||||
|
||||
// `submod/bla.rs` -> `submod.rs`
|
||||
if let Some(newmod) = (|| {
|
||||
|
Loading…
Reference in New Issue
Block a user