aboutsummaryrefslogtreecommitdiff
path: root/src/main/checkstyle/checkstyle-suppressions.xml
blob: 2edb43be6c7475a4765a9327bbb342777a8a86fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0"?>

<!DOCTYPE suppressions PUBLIC
     "-//Puppy Crawl//DTD Suppressions 1.0//EN"
     "http://www.puppycrawl.com/dtds/suppressions_1_0.dtd">

<suppressions>

	<suppress files=".jpg" checks="NewlineAtEndOfFile|FileTabCharacter|FileLength" />
	<suppress files=".png" checks="NewlineAtEndOfFile|FileTabCharacter|FileLength" />
	<suppress files=".fxml" checks="FileTabCharacter" />
	<suppress files=".css" checks="FileTabCharacter" />
	<suppress files="META[\\-]INF[\\/]services[\\/]" checks="NewlineAtEndOfFile|FileTabCharacter" />

	<!-- JUnit Rules require the rules field to have public visibility. -->
	<!-- See http://checkstyle.sourceforge.net/config_design.html#VisibilityModifier -->
	<suppress files=".*Test\.java" checks="VisibilityModifier" />
	<suppress files="Test.*\.java" checks="VisibilityModifier" />

	<!-- For our tests we do not demand API documentation. -->
	<!-- See http://checkstyle.sf.net/config_javadoc.html -->
	<suppress files=".*Test\.java" checks="JavadocPackage" />
	<suppress files=".*Test\.java" checks="JavadocMethod" />
	<suppress files=".*Test\.java" checks="JavadocType" />
	<suppress files=".*Test\.java" checks="JavadocVariable" />
	<suppress files=".*Test\.java" checks="JavadocStyle" />

</suppressions>