Open JonathanWoollett-Light opened 12 months ago
Warns when you deny on lints e.g. #![deny(missing_docs)].
deny
#![deny(missing_docs)]
clippy -- --deny warnings
Could be written as:
#![warn(missing_docs)]
You could just build with --cap-lints warn which gets the same thing.
--cap-lints warn
Thank you this is useful.
What it does
Warns when you
deny
on lints e.g.#![deny(missing_docs)]
.Advantage
Drawbacks
clippy -- --deny warnings
.Example
Could be written as: