Skip to content

Commit 0a400d5

Browse files
committed
refactor: Make lint names snake_case
1 parent 77506e5 commit 0a400d5

File tree

3 files changed

+52
-5
lines changed

3 files changed

+52
-5
lines changed

src/cargo/core/workspace.rs

+8-3
Original file line numberDiff line numberDiff line change
@@ -1128,18 +1128,23 @@ impl<'gctx> Workspace<'gctx> {
11281128

11291129
pub fn emit_lints(&self, pkg: &Package, path: &Path) -> CargoResult<()> {
11301130
let mut error_count = 0;
1131-
let lints = pkg
1131+
let toml_lints = pkg
11321132
.manifest()
11331133
.resolved_toml()
11341134
.lints
11351135
.clone()
11361136
.map(|lints| lints.lints)
1137-
.unwrap_or(manifest::TomlLints::default())
1137+
.unwrap_or(manifest::TomlLints::default());
1138+
let cargo_lints = toml_lints
11381139
.get("cargo")
11391140
.cloned()
11401141
.unwrap_or(manifest::TomlToolLints::default());
1142+
let normalized_lints = cargo_lints
1143+
.into_iter()
1144+
.map(|(name, lint)| (name.replace('-', "_"), lint))
1145+
.collect();
11411146

1142-
check_implicit_features(pkg, &path, &lints, &mut error_count, self.gctx)?;
1147+
check_implicit_features(pkg, &path, &normalized_lints, &mut error_count, self.gctx)?;
11431148
if error_count > 0 {
11441149
Err(crate::util::errors::AlreadyPrintedError::new(anyhow!(
11451150
"encountered {error_count} errors(s) while running lints"

src/cargo/util/lints.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pub struct LintGroup {
6767
}
6868

6969
const RUST_2024_COMPATIBILITY: LintGroup = LintGroup {
70-
name: "rust-2024-compatibility",
70+
name: "rust_2024_compatibility",
7171
default_level: LintLevel::Allow,
7272
desc: "warn about compatibility with Rust 2024",
7373
edition_lint_opts: Some((Edition::Edition2024, LintLevel::Deny)),
@@ -150,7 +150,7 @@ impl From<TomlLintLevel> for LintLevel {
150150
/// [RFC #3143]: https://rust-lang.github.io/rfcs/3143-cargo-weak-namespaced-features.html
151151
/// [RFC #3491]: https://rust-lang.github.io/rfcs/3491-remove-implicit-features.html
152152
const IMPLICIT_FEATURES: Lint = Lint {
153-
name: "implicit-features",
153+
name: "implicit_features",
154154
desc: "warn about the use of unstable features",
155155
groups: &[RUST_2024_COMPATIBILITY],
156156
default_level: LintLevel::Allow,

tests/testsuite/lints_table.rs

+42
Original file line numberDiff line numberDiff line change
@@ -846,3 +846,45 @@ fn cargo_lints_success() {
846846
)
847847
.run();
848848
}
849+
850+
#[cargo_test]
851+
fn cargo_lints_underscore_supported() {
852+
Package::new("bar", "0.1.0").publish();
853+
let foo = project()
854+
.file(
855+
"Cargo.toml",
856+
r#"
857+
[package]
858+
name = "foo"
859+
version = "0.0.1"
860+
edition = "2021"
861+
authors = []
862+
863+
[lints.cargo]
864+
"implicit_features" = "warn"
865+
866+
[dependencies]
867+
bar = { version = "0.1.0", optional = true }
868+
"#,
869+
)
870+
.file("src/lib.rs", "")
871+
.build();
872+
873+
foo.cargo("check -Zcargo-lints")
874+
.masquerade_as_nightly_cargo(&["-Zcargo-lints"])
875+
.with_stderr(
876+
"\
877+
warning: unused optional dependency
878+
--> Cargo.toml:12:17
879+
|
880+
12 | bar = { version = \"0.1.0\", optional = true }
881+
| ---
882+
|
883+
[UPDATING] `dummy-registry` index
884+
[LOCKING] [..]
885+
[CHECKING] foo v0.0.1 ([CWD])
886+
[FINISHED] [..]
887+
",
888+
)
889+
.run();
890+
}

0 commit comments

Comments
 (0)