We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44ce6e7 commit 8576275Copy full SHA for 8576275
checkstyle.xml
@@ -117,7 +117,10 @@
117
<!-- TODO <module name="ParameterName"/> -->
118
<module name="StaticVariableName"/>
119
<!-- TODO <module name="TypeName"/> -->
120
-
+ <module name="TypeName">
121
+ <property name="format" value="^[A-Z][a-zA-Z0-9]*$"/>
122
+ <property name="severity" value="warning"/>
123
+ </module>
124
<!-- Checks for imports -->
125
<!-- See https://checkstyle.org/checks/imports/index.html -->
126
<module name="AvoidStarImport"/>
exampleClass.java
@@ -0,0 +1,5 @@
1
+public class exampleClass {
2
+ public static void main(String[] args) {
3
+ System.out.println("Hello, Checkstyle!");
4
+ }
5
+}
0 commit comments