I'm trying to build and test my Rust code with a CI, and I'm wondering whether cargo clippy
(potentially with options) covers everything that cargo check
does. Do I only need to run cargo clippy
, or do I need to run both?
Asked
Active
Viewed 7,520 times
35

Zizheng Tai
- 6,170
- 28
- 79
1 Answers
32

Peter Hall
- 53,120
- 14
- 139
- 204

riginding
- 532
- 1
- 6
- 7
-
8Does this mean it doesn't run **anything** else but `cargo check`? (No.) – Paul-Sebastian Manole Nov 25 '19 at 20:10