noverify icon indicating copy to clipboard operation
noverify copied to clipboard

linter: new rule for dangerous bool/int condition

Open Hidanio opened this issue 11 months ago • 0 comments

Sometimes during debugging we can write this kind of code

if(1){
}
while(true){
}

This code can be very dangerous.

Added:

  • new rules for: if/while/do statemenst
  • tests for it

Hidanio avatar Mar 22 '24 13:03 Hidanio