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

rules.AvoidEscapedUnicodeCharacters.md Maven / Gradle / Ivy


Prevents use of obscure escape codes (e.g. `\u221e`). However, non-printable/control characters are still permitted.

Valid:
````
String unitAbbrev = "??s";
String byteOrdered = '\ufeff' = content;
````

Invalid:
````
String unitAbbrev = "\u03bcs";
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy