Putting multiple statements on a single line lowers the code readability and makes debugging the code more complex.
IF @x > 0 SET @x = 0; IF @y > 0 SET @y = 0; -- Noncompliant
Write one statement per line to improve readability.
IF @x > 0 SET @x = 0;
IF @y > 0 SET @y = 0;