Skip to content

Commit 887fb76

Browse files
committed
cargo dev dogfood --fix --allow-dirty
1 parent 4c061ef commit 887fb76

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

clippy_config/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ mod metadata;
2727
pub mod msrvs;
2828
pub mod types;
2929

30-
pub use conf::{Conf, get_configuration_metadata, lookup_conf_file, sanitize_explanation};
31-
pub use metadata::ClippyConfiguration;
30+
pub use crate::conf::{Conf, get_configuration_metadata, lookup_conf_file, sanitize_explanation};
31+
pub use crate::metadata::ClippyConfiguration;

clippy_lints/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ pub(crate) enum LintCategory {
464464
Internal,
465465
}
466466
#[allow(clippy::enum_glob_use)]
467-
use LintCategory::*;
467+
use crate::LintCategory::*;
468468

469469
impl LintCategory {
470470
fn is_all(self) -> bool {

clippy_utils/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ use std::hash::BuildHasherDefault;
8989
use std::iter::{once, repeat};
9090
use std::sync::{Mutex, MutexGuard, OnceLock};
9191

92+
use crate::visitors::Visitable;
9293
use clippy_config::types::DisallowedPath;
9394
use itertools::Itertools;
9495
use rustc_ast::ast::{self, LitKind, RangeLimits};
@@ -124,7 +125,6 @@ use rustc_span::source_map::SourceMap;
124125
use rustc_span::symbol::{Ident, Symbol, kw};
125126
use rustc_span::{InnerSpan, Span, sym};
126127
use rustc_target::abi::Integer;
127-
use visitors::Visitable;
128128

129129
use crate::consts::{ConstEvalCtxt, Constant, mir_to_const};
130130
use crate::higher::Range;

0 commit comments

Comments
 (0)