CodeStyle formatting to conform to basic Checkstyle rules.
The code-style rules follow google style with some changes: 1. Increase line length from 100 to 120 2. Disable JavaDoc related checkstyles as this needs more manual work. Both source and test code are checked for code-style
This commit is contained in:
committed by
vinoth chandar
parent
987f5d6b96
commit
788e4f2d2e
12
style/checkstyle-suppressions.xml
Normal file
12
style/checkstyle-suppressions.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<!DOCTYPE suppressions PUBLIC
|
||||
"-//Puppy Crawl//DTD Suppressions 1.0//EN"
|
||||
"http://www.puppycrawl.com/dtds/suppressions_1_0.dtd">
|
||||
|
||||
<suppressions>
|
||||
<!-- Impossible to resolve checkstyle indentation violation because of checkstyle bug -->
|
||||
<suppress checks="indentation" files="HoodieLogFileCommand.java" lines="1-9999"/>
|
||||
<!-- Member Names expected to start with "_" -->
|
||||
<suppress checks="naming" files="TestRecord.java" lines="1-9999"/>
|
||||
</suppressions>
|
||||
Reference in New Issue
Block a user