Checks for unnamed constants, aka magic numbers.
“Magic numbers are considered bad practice in programming, because they can make the code more difficult to understand and harder to maintain.” (pandaquests)
x *= 1000;
Use instead:
const MILLIS: u64 = 1000;
x *= MILLIS;
threshold: u64
(default 10
): Minimum value a constant must exceed to be flagged.