### What it does Detect `assert!(a == b)` and `assert!(a != b)` and suggest using `assert_eq!` or `assert_ne!` respectively. Should probably apply to `debug_assert!` as well. ### Advantage - The specialized asserts provide more info in their error messages ### Drawbacks _No response_ ### Example ```rust assert!(fib(6) == 8); ``` Could be written as: ```rust assert_eq!(fib(6), 8); ``` <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"nyurik"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->