All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
Function arguments having similar names that differ by an underscore affect code readability.
fn foo(a: i32, _a: i32) {}
fn foo(a: i32, _b: i32) {}