Skip to content

Commit

Permalink
Require package names not to contain uppercase letters nor underscores
Browse files Browse the repository at this point in the history
  • Loading branch information
findepi authored and martint committed Mar 16, 2019
1 parent 8b2f4d8 commit a12f6f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Airbase 91

* Require package names not to contain uppercase letters nor underscores.
* Dependency updates:
- Jackson 2.9.8 (from 2.9.7)
* Plugin updates:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@
<module name="LocalVariableName" />
<module name="LocalFinalVariableName" />
<module name="TypeName" />
<module name="PackageName" />
<module name="PackageName">
<property name="format" value="^[a-z]+(\.[a-z][a-z0-9]*)*$" />
</module>
<module name="ParameterName" />
<module name="StaticVariableName" />
<module name="ClassTypeParameterName">
Expand Down

0 comments on commit a12f6f6

Please sign in to comment.