parity-common
parity-common copied to clipboard
Silence uint warns
Hello! I'm having a hard time silencing the warns from uint initialization. I tried adding allow = ["clippy::ptr_offset_with_cast"] to .clippy.toml but this hides another warns from the code. If you guys could suggest a solution to this. Also, if this is more an issue with rust-clippy, no problem, I can move this issue there.

Hey @pmarangone, the ideal way to resolve this would be to:
- Figure out which clippy warnings are legitimate and fix them in uint. (medium)
- Put an ignoring attribute on the rest in uint (easy)
- Add CI clippy check (easy)
CI check is missing