This rule is deprecated, and will eventually be removed.

Why is this an issue?

For better readability, do not put more than one statement on a single line.

Noncompliant code example

foo(); bar(); // Noncompliant

Compliant solution

foo();
bar();