Skip to content

Commit

Permalink
Enforce empty lines around program elements
Browse files Browse the repository at this point in the history
  • Loading branch information
electrum committed Dec 29, 2018
1 parent 68b4b0f commit a252a47
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Airbase 89
- Checkstyle 3.0.0 (from 2.17)
* Checkstyle updates:
- Version 8.15 (from 8.7)
- Enforce empty lines around program elements

Airbase 88

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,12 @@
<module name="RightCurly">
<property name="option" value="alone" />
</module>
<module name="EmptyLineSeparator">
<property name="allowNoEmptyLineBetweenFields" value="true" />
<property name="tokens" value="
IMPORT, STATIC_IMPORT, CLASS_DEF, INTERFACE_DEF, ENUM_DEF,
STATIC_INIT, INSTANCE_INIT, METHOD_DEF, CTOR_DEF, VARIABLE_DEF" />
</module>
<module name="GenericWhitespace" />
<module name="WhitespaceAfter" />
<module name="NoWhitespaceAfter" />
Expand Down

0 comments on commit a252a47

Please sign in to comment.