-
Hello, I noticed that some lints (ex. Does this mean that:
Thank you very much in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Note that The configuration that can be done in the If you find a lint that could benefit from a configuration option, feel free to open an issue about it or ask over on Zulip. |
Beta Was this translation helpful? Give feedback.
Note that
Configuration
in Clippy means configuring the lint and not the lint level. The lint level can only be configured in the code or the command line. Discussion about a configuration file for lint levels exists, see rust-lang/cargo#5034.The configuration that can be done in the
clippy.toml
file only makes sense for some lints. A good example is thetoo_many_arguments
lint, where you can specify in theclippy.toml
file how many arguments you want to allow.If you find a lint that could benefit from a configuration option, feel free to open an issue about it or ask over on Zulip.