forked from EngineHub/CommandHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkstyle_suppressions.xml
34 lines (23 loc) · 1.99 KB
/
checkstyle_suppressions.xml
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
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
<suppressions>
<!-- Ignore certain checks in test files -->
<suppress checks="MemberName" files=".*Test\.java$" />
<suppress checks="AvoidStarImport" files=".*Test\.java$"/>
<!-- Ignore type name check for package "com.laytonsmith.core.functions" since function classes use a different format -->
<suppress checks="TypeName" files="com[\\/]laytonsmith[\\/]core[\\/]functions.*\.java$"/>
<!-- Ignore local variable name check for package "com.laytonsmith.core.functions" since many variables are called after CH functions -->
<suppress checks="LocalVariableName" files="com[\\/]laytonsmith[\\/]core[\\/]functions.*\.java$"/>
<!-- Ignore type name check for package "com.laytonsmith.core.events drivers" since event driver classes use a different format -->
<suppress checks="TypeName" files="com[\\/]laytonsmith[\\/]core[\\/]events[\\/]drivers.*\.java$"/>
<!-- Ignore bStats, reformatting is not allowed -->
<suppress checks=".*" files="com[\\/]laytonsmith[\\/]commandhelper[\\/]Metrics.java$"/>
<!-- It's too difficult to manage checkstyle for half generated files, so just exclude them. -->
<suppress checks=".*" files="com[\\/]laytonsmith[\\/]tools[\\/]docgen[\\/]localization[\\/]LocalizationUI.java$"/>
<suppress checks=".*" files="com[\\/]laytonsmith[\\/]tools[\\/]docgen[\\/]localization[\\/]FindDialog.java$"/>
<suppress checks=".*" files="com[\\/]laytonsmith[\\/]tools[\\/]docgen[\\/]localization[\\/]AzureKeyInputDialog.java$"/>
<suppress checks=".*" files="com[\\/]laytonsmith[\\/]tools[\\/]docgen[\\/]localization[\\/]ForkDatabaseWizard.java$"/>
<suppress checks=".*" files="com[\\/]laytonsmith[\\/]tools[\\/]docgen[\\/]localization[\\/]LogViewer.java$"/>
<suppress checks=".*" files="com[\\/]laytonsmith[\\/]core[\\/]MainSandbox.java$"/>
<suppress checks=".*" files="io[\\/]swagger[\\/].*\.java$"/>
</suppressions>