-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b418efb
commit 043a75e
Showing
6 changed files
with
770 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Checkstyle for the Embulk project | ||
================================== | ||
|
||
* google_check.xml: Downloaded from: https://github.com/checkstyle/checkstyle/blob/checkstyle-9.3/src/main/resources/google_checks.xml | ||
* Commit: 5c1903792f8432243cc8ae5cd79a03a004d3c09c | ||
* checkstyle.xml: Customized from google_check.xml. | ||
* To enable suppressions through checkstyle-suppressions.xml. | ||
* To enable suppressions with @SuppressWarnings. | ||
* To indent with 4-column spaces. | ||
* To limit columns to 180 characters. | ||
* To reject unused imports. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0"?> | ||
|
||
<!DOCTYPE suppressions PUBLIC | ||
"-//Puppy Crawl//DTD Suppressions 1.2//EN" | ||
"http://checkstyle.sourceforge.net/dtds/suppressions_1_2.dtd"> | ||
|
||
<suppressions> | ||
<suppress checks="JavadocMethod" files=".*"/> | ||
<suppress checks="JavadocParagraph" files=".*"/> | ||
<suppress checks="JavadocTagContinuationIndentation" files=".*"/> | ||
<suppress checks="MissingJavadocType" files=".*"/> | ||
<suppress checks="SingleLineJavadoc" files=".*"/> | ||
<suppress checks="SummaryJavadoc" files=".*"/> | ||
</suppressions> |
Oops, something went wrong.