-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsuppressions.xml
More file actions
23 lines (20 loc) · 1 KB
/
Copy pathsuppressions.xml
File metadata and controls
23 lines (20 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<!DOCTYPE suppressions PUBLIC
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
<suppressions>
<!-- hidden files -->
<suppress files="[/\\]\..+" checks=".*" />
<!-- maven target folders -->
<suppress files="[/\\]target[/\\]" checks=".*" />
<!-- generated code -->
<suppress files="[/\\]gen[/\\]" checks=".*" />
<suppress files="[/\\]annotation_gen[/\\]" checks=".*" />
<!-- thirdparty code in our repository -->
<suppress files="[/\\]thirdparty[/\\]" checks=".*" />
<!-- BRouter code -->
<suppress files="[\\/]cgeo[\\/]geocaching[\\/]brouter[\\/].*\.java$" checks="EqualsHashCodeCheck|FinalParametersCheck|InnerAssignmentCheck|ParameterAssignmentCheck" />
<!-- OpenWIG code -->
<suppress files="[\\/]cgeo[\\/]geocaching[\\/]wherigo[\\/]openwig[\\/].*\.java$" checks=".*" />
<suppress files="[\\/]cgeo[\\/]geocaching[\\/]wherigo[\\/]kahlua[\\/].*\.java$" checks=".*" />
</suppressions>