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

org.sonar.l10n.java.rules.java.S101.html Maven / Gradle / Ivy

There is a newer version: 8.6.0.37351
Show newest version

Why is this an issue?

Shared naming conventions allow teams to collaborate efficiently.

This rule raises an issue when a class name does not match a provided regular expression.

For example, with the default provided regular expression ^[A-Z][a-zA-Z0-9]*$, the class:

class my_class {...} // Noncompliant

should be renamed to

class MyClass {...}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy