-
Notifications
You must be signed in to change notification settings - Fork 1
/
checkstyle-filter.xml
51 lines (40 loc) · 1.7 KB
/
checkstyle-filter.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE suppressions PUBLIC
"-//Checkstyle//DTD SuppressionFilter Configuration 1.0//EN"
"https://checkstyle.org/dtds/suppressions_1_0.dtd">
<suppressions>
<!-- Very difficult to break up this implementation. -->
<suppress files="VulkanLWJGLLogicalDevice.java"
checks="FileLength"/>
<!-- A large enum with lots of data methods. -->
<suppress files="VulkanFormat.java"
checks="FileLength"/>
<suppress files="VulkanFormat.java"
checks="JavaNCSS"/>
<!-- Not under our control. -->
<suppress files="VulkanPhysicalDeviceLimitsType.java"
checks="MethodCount"/>
<!-- Manually copying String -->
<suppress files="VulkanLWJGLExtDebugUtils.java"
checks="IllegalInstantiation"/>
<!-- Generated. -->
<suppress files="VulkanPhysicalDeviceFeaturesFunctions.java"
checks="CyclomaticComplexity"/>
<suppress files="VulkanPhysicalDeviceFeaturesFunctions.java"
checks="LineLength"/>
<suppress files="VulkanPhysicalDeviceFeaturesFunctions.java"
checks="ExecutableStatementCount"/>
<!-- Large switch over sealed class. -->
<suppress files="VulkanLWJGLExtDebugUtils.java"
checks="RedundantModifier"/>
<suppress files="VulkanLWJGLExtDebugUtils.java"
checks="CyclomaticComplexity"/>
<suppress files=".*\.java"
checks="RedundantModifier"/>
<!-- Tracking different failures in submissions. -->
<suppress files="JCSwapchainManager\.java"
checks="ThrowsCount"/>
<!-- Lots of immutable values that need to be passed around. -->
<suppress files="JCSwapchainManager\.java"
checks="ParameterNumber"/>
</suppressions>