From 9dc366bc4d8a32197f28cb94b9c0e0a51108c809 Mon Sep 17 00:00:00 2001 From: Fridtjof Stoldt Date: Wed, 19 May 2021 17:23:33 +0200 Subject: [PATCH] Fixed a type Co-authored-by: Philipp Krones --- clippy_lints/src/utils/internal_lints/metadata_collector.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/utils/internal_lints/metadata_collector.rs b/clippy_lints/src/utils/internal_lints/metadata_collector.rs index 19f20376c6f16..d68790220576f 100644 --- a/clippy_lints/src/utils/internal_lints/metadata_collector.rs +++ b/clippy_lints/src/utils/internal_lints/metadata_collector.rs @@ -49,7 +49,7 @@ const DEPRECATED_LINT_LEVEL: &str = "none"; const DEFAULT_LINT_LEVELS: [(&str, &str); 8] = [ ("correctness", "deny"), ("restriction", "allow"), - ("style", "warm"), + ("style", "warn"), ("pedantic", "allow"), ("complexity", "warn"), ("perf", "warn"),