All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.py.rules.python.OneStatementPerLine.html Maven / Gradle / Ivy

There is a newer version: 4.23.0.17664
Show newest version

Why is this an issue?

Putting multiple statements on a single line lowers the code readability and makes debugging the code more complex.

if (True): print("hello") # Noncompliant

Write one statement per line to improve readability.

if (True):
    print("hello")




© 2015 - 2024 Weber Informatics LLC | Privacy Policy