Skip to content

Commit 2966258

Browse files
committed
chore: refine checkstyle configuration
- Increase length of allowable consecutive capital letters. - Remove requirement to group overloaded methods together.
1 parent 327c0e4 commit 2966258

File tree

8 files changed

+2
-2
lines changed

8 files changed

+2
-2
lines changed

config/checkstyle/checkstyle.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
<!-- Validate abbreviations (consecutive capital letters) length in identifier name -->
8787
<module name="AbbreviationAsWordInName">
8888
<property name="ignoreFinal" value="false"/>
89-
<property name="allowedAbbreviationLength" value="1"/>
89+
<property name="allowedAbbreviationLength" value="3"/>
9090
</module>
9191

9292
<!-- <module name="PackageName">-->
@@ -256,7 +256,7 @@
256256
-->
257257
</module>
258258

259-
<module name="OverloadMethodsDeclarationOrder"/>
259+
<!-- <module name="OverloadMethodsDeclarationOrder"/>-->
260260

261261
<!--
262262
WHITESPACE CHECKS

src/main/java/algorithms/graphs/breadthFirstSearch.java renamed to src/main/java/algorithms/graphs/BreadthFirstSearch.java

File renamed without changes.
File renamed without changes.

src/main/java/algorithms/util/matrixToListConverter.java renamed to src/main/java/algorithms/util/MatrixToListConverter.java

File renamed without changes.

src/test/java/algorithms/graphs/breadthFirstSearchTest.java renamed to src/test/java/algorithms/graphs/BreadthFirstSearchTest.java

File renamed without changes.

src/test/java/algorithms/graphs/depthFirstSearchTest.java renamed to src/test/java/algorithms/graphs/DepthFirstSearchTest.java

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)