IDE extension that lets you fix coding issues before they exist!
Setup is effortless and analysis is automatic for most languages
Fast, accurate analysis; enterprise scalability
The repetition of a prefix operator (!, or ~) is usually a typo. The second operator invalidates the first one.
!
~
int v1 = 0; bool v2 = false; var v3 = !!v1; // Noncompliant: equivalent to "v1" var v4 = ~~v2; // Noncompliant: equivalent to "v2"