Skip to content

Commit

Permalink
chore(lint): Fix Checkstyle rules
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseLion committed Sep 14, 2023
1 parent a126cac commit 5698be4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,25 @@
<module name="RedundantModifier" />

<!-- Naming Conventions -->
<module name="ClassTypeParameterName" />
<module name="ConstantName" />
<module name="IllegalIdentifierName" />
<module name="InterfaceTypeParameterName" />
<module name="LambdaParameterName" />
<module name="LocalFinalVariableName" />
<module name="LocalVariableName" />
<module name="MemberName" />
<module name="MethodName" />
<module name="MethodTypeParameterName" />
<module name="PackageName">
<property name="format" value="^[a-z]+(\.[a-z][a-z0-9]*)*$" />
</module>
<module name="ParameterName" />
<module name="PatternVariableName" />
<module name="RecordComponentName" />
<module name="RecordTypeParameterName" />
<module name="StaticVariableName" />
<module name="TypeName" />

<!-- Whitespace -->
<module name="EmptyLineSeparator">
Expand Down

0 comments on commit 5698be4

Please sign in to comment.