Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions checkstyle-circle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- Remove PLUS from operator newline required
- Remove VariableDeclarationUsageDistance
- The opening and closing curly brace of an empty constructor body or empty method body can be on the same line
- Require that classes have package declarations, and that package names match the directory names for source files
-->

<!--
Expand Down Expand Up @@ -131,6 +132,7 @@
<message key="name.invalidPattern"
value="Package name ''{0}'' must match pattern ''{1}''."/>
</module>
<module name="PackageDeclaration"/>
<module name="TypeName">
<message key="name.invalidPattern"
value="Type name ''{0}'' must match pattern ''{1}''."/>
Expand Down
1 change: 1 addition & 0 deletions checkstyle-without-formatting.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
<message key="name.invalidPattern"
value="Package name ''{0}'' must match pattern ''{1}''."/>
</module>
<module name="PackageDeclaration"/>
<module name="TypeName">
<message key="name.invalidPattern"
value="Type name ''{0}'' must match pattern ''{1}''."/>
Expand Down
Loading