diff options
| author | Samuel Moelius <sam@moeli.us> | 2022-10-22 07:37:10 -0400 |
|---|---|---|
| committer | Samuel Moelius <sam@moeli.us> | 2022-10-22 07:37:10 -0400 |
| commit | 5c6c3534d9648472940efe00d3d8fb9e15bdd1a2 (patch) | |
| tree | a74604b0ba2a439ec9b1276239bb6f6748ae50b0 | |
| parent | b72e451310d65ddf69441a641e2ebd6886c813b8 (diff) | |
| download | rust-5c6c3534d9648472940efe00d3d8fb9e15bdd1a2.tar.gz rust-5c6c3534d9648472940efe00d3d8fb9e15bdd1a2.zip | |
Add `lintcheck` to packages linted by `dogfood` test
| -rw-r--r-- | tests/dogfood.rs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/dogfood.rs b/tests/dogfood.rs index 961525bbd91..6d0022f7a5c 100644 --- a/tests/dogfood.rs +++ b/tests/dogfood.rs @@ -20,7 +20,14 @@ fn dogfood_clippy() { } // "" 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"]); } } |
