Skip to content

Commit f6daa39

Browse files
committed
Enable unfulfilled_lint_expectations
1 parent 30c73fe commit f6daa39

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

tests/dogfood.rs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,16 @@ fn run_clippy_for_package(project: &str) -> bool {
8282

8383
command.arg("--");
8484
command.arg("-Cdebuginfo=0"); // disable debuginfo to generate less data in the target dir
85-
command.args(["-D", "clippy::all", "-D", "clippy::pedantic", "-D", "clippy::dbg_macro"]);
85+
command.args([
86+
"-D",
87+
"unfulfilled_lint_expectations",
88+
"-D",
89+
"clippy::all",
90+
"-D",
91+
"clippy::pedantic",
92+
"-D",
93+
"clippy::dbg_macro",
94+
]);
8695
if !cfg!(feature = "internal") {
8796
// running a clippy built without internal lints on the clippy source
8897
// that contains e.g. `allow(clippy::symbol_as_str)`

0 commit comments

Comments
 (0)