cargo clippy is a great tool, but I don't think that it should be part of a CI run, and I don't think that it makes sense (or is worthwhile) to spend time deciding which rules should be included or not.
The reason is that cargo clippy is meant to be extremely enthusiastic about giving suggestions. Often, these suggestions are helpful, but sometimes, they aren't. And, for a given rule, there's no way to know whether it will always be useful or not (i.e., there's no way to decide in advance whether it should be "required"). For instance, consider needless_range_loop. This is often a good warning, but sometimes it really does make more sense to use an explicit index. There's no way to know, except by using context and judgement.
I wonder whether a focus on requiring linting tools as part of a development/CI process is a legacy from C development. Since rustc already includes quite extensive errors and warnings, is a required linting process beyond "no warnings on compilation" necessary?
To put it another way, what errors are people hoping to catch using a linter that rustc wouldn't already warn about?
cargo clippy is a great tool, but I don't think that it should be part of a CI run, and I don't think that it makes sense (or is worthwhile) to spend time deciding which rules should be included or not.
The reason is that cargo clippy is meant to be extremely enthusiastic about giving suggestions. Often, these suggestions are helpful, but sometimes, they aren't. And, for a given rule, there's no way to know whether it will always be useful or not (i.e., there's no way to decide in advance whether it should be "required"). For instance, consider needless_range_loop. This is often a good warning, but sometimes it really does make more sense to use an explicit index. There's no way to know, except by using context and judgement.
Yes, we'll definitely need to slowly build up which warnings we follow/ignore, mostly on a as-needed basis, as you said. It isn't practical to decide everything in one go.
I wonder whether a focus on requiring linting tools as part of a development/CI process is a legacy from C development. Since rustc already includes quite extensive errors and warnings, is a required linting process beyond "no warnings on compilation" necessary?
Linting is a pretty common practice in languages other than C. For example, Golang has its own linter: https://github.com/golang/lint and JavaScript has JSHint and other tools.
To put it another way, what errors are people hoping to catch using a linter that rustc wouldn't already warn about?
It is true that we'll lean on rustc for compile errors, but using a linter helps ensure a certain coding style.
Because clippy is so opinionated and also in flux, we hope starting simple and iterating when needed will have the best result. Hopefully we can give feedback to clippy developers to help improve the usefulness of it as well.