We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example:
Instead of
pub const INFINITE: u32 = 4294967295;
generate
pub const INFINITE: u32 = 4_294_967_295;
This would remove clippy warning in Rust.
clippy
Another possibility, would be to use #![allow(clippy:all)]. In the end, this is generated code and is not meant to be very readable.
#![allow(clippy:all)]
The text was updated successfully, but these errors were encountered:
gferon
No branches or pull requests
Example:
Instead of
generate
This would remove
clippy
warning in Rust.Another possibility, would be to use
#![allow(clippy:all)]
. In the end, this is generated code and is not meant to be very readable.The text was updated successfully, but these errors were encountered: