Add lintcheck to packages linted by dogfood test

This commit is contained in:
Samuel Moelius 2022-10-22 07:37:10 -04:00
parent b72e451310
commit 5c6c3534d9

View File

@ -20,7 +20,14 @@ fn dogfood_clippy() {
} }
// "" is the root package // "" is the root package
for package in &["", "clippy_dev", "clippy_lints", "clippy_utils", "rustc_tools_util"] { for package in &[
"",
"clippy_dev",
"clippy_lints",
"clippy_utils",
"lintcheck",
"rustc_tools_util",
] {
run_clippy_for_package(package, &["-D", "clippy::all", "-D", "clippy::pedantic"]); run_clippy_for_package(package, &["-D", "clippy::all", "-D", "clippy::pedantic"]);
} }
} }