Disabled checkstyle rule for Java files to end with new-line.
Showing
1 changed file
with
1 additions
and
8 deletions
| ... | @@ -2,14 +2,6 @@ | ... | @@ -2,14 +2,6 @@ |
| 2 | <!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> | 2 | <!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> |
| 3 | 3 | ||
| 4 | <suppressions> | 4 | <suppressions> |
| 5 | - <!-- | ||
| 6 | - Note: Exclusion definition exists in multiple places. | ||
| 7 | - - In file ${findbugs.excludeFilterFile} defined at top of pom.xml | ||
| 8 | - - In file conf/checkstyle/suppressions.xml (this file) | ||
| 9 | - - maven-pmd-plugin configuration in pom.xml | ||
| 10 | - (under build and reporting) | ||
| 11 | - --> | ||
| 12 | - | ||
| 13 | <!-- Suppressions for ONOS --> | 5 | <!-- Suppressions for ONOS --> |
| 14 | <suppress files="edu.stanford.ramcloud.*" checks="[_a-zA-Z0-9]*"/> | 6 | <suppress files="edu.stanford.ramcloud.*" checks="[_a-zA-Z0-9]*"/> |
| 15 | <suppress files="net.floodlightcontroller.*" checks="[_a-zA-Z0-9]*"/> | 7 | <suppress files="net.floodlightcontroller.*" checks="[_a-zA-Z0-9]*"/> |
| ... | @@ -27,6 +19,7 @@ | ... | @@ -27,6 +19,7 @@ |
| 27 | <suppress files=".*" checks="AvoidInlineConditionalsCheck"/> | 19 | <suppress files=".*" checks="AvoidInlineConditionalsCheck"/> |
| 28 | <suppress files=".*" checks="OperatorWrapCheck"/> | 20 | <suppress files=".*" checks="OperatorWrapCheck"/> |
| 29 | <suppress files=".*" checks="HiddenField"/> | 21 | <suppress files=".*" checks="HiddenField"/> |
| 22 | + <suppress files=".java" checks="NewlineAtEndOfFile"/> | ||
| 30 | 23 | ||
| 31 | </suppressions> | 24 | </suppressions> |
| 32 | 25 | ... | ... |
-
Please register or login to post a comment