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

rules.SingleSpaceSeparator.md Maven / Gradle / Ivy


Checks that non-whitespace characters on the same line are separated by no more than one whitespace.

Valid:
````
if (a < 0) {}
public long toNanos(long d) { return d; };
````

Invalid:
````
if  (a < 0) {}
public long toNanos(long d)  { return d;             };
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy