-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Suppress checkstyle rules for test sources (#109)
- Loading branch information
Showing
7 changed files
with
68 additions
and
18 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
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
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,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE suppressions PUBLIC | ||
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN" | ||
"https://checkstyle.org/dtds/suppressions_1_2.dtd"> | ||
<suppressions> | ||
<!-- More leniency for test sources --> | ||
<suppress checks="(Javadoc|LineLength|MagicNumber)" files="dk[\\/].*[\\/](accept|fixture|unit)[\\/].*java" /> | ||
</suppressions> |
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 |
---|---|---|
@@ -1,2 +1,11 @@ | ||
# These files from the src/main/resources/config directory get unpacked to | ||
# the Gradle wrapper instance's dir in mada-data/$Path/$Checksum/$Name | ||
# each with a .valid marker. | ||
# | ||
# The checksum should reflect changes to any file to be unpacked in | ||
# the same (Path) directory. | ||
# | ||
# Path/Name : Checksum | ||
checkstyle/checkstyle-mada.xml: @CHECKSTYLE_MADA@ | ||
spotless/eclipse-formatter-mada.xml: @ECLIPSE_FORMATTER_MADA@ | ||
checkstyle/suppressions-mada.xml: @CHECKSTYLE_MADA@ | ||
spotless/eclipse-formatter-mada.xml: @ECLIPSE_FORMATTER_MADA@ |