aboutsummaryrefslogtreecommitdiffstats
path: root/.code_styling/Checkstyle_Suppression_Filter.xml
diff options
context:
space:
mode:
authorPatrick Brady <pb071s@att.com>2017-02-15 23:11:26 -0800
committerPatrick Brady <pb071s@att.com>2017-02-15 23:13:06 -0800
commit1c192d2dd68724e292b6a30f463085a262e1e813 (patch)
treed0e2b3a396e169863cd0efaa835c8675e9d5aaac /.code_styling/Checkstyle_Suppression_Filter.xml
parentc69ba05c7508aa7d7f675189a45c8c87569369ef (diff)
Moving all files to root directory
Change-Id: Ica5535fd6ec85f350fe1640b42137b49f83f10f0 Signed-off-by: Patrick Brady <pb071s@att.com>
Diffstat (limited to '.code_styling/Checkstyle_Suppression_Filter.xml')
-rw-r--r--.code_styling/Checkstyle_Suppression_Filter.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.code_styling/Checkstyle_Suppression_Filter.xml b/.code_styling/Checkstyle_Suppression_Filter.xml
new file mode 100644
index 000000000..fe36353f3
--- /dev/null
+++ b/.code_styling/Checkstyle_Suppression_Filter.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0"?>
+
+<!DOCTYPE suppressions PUBLIC
+ "-//Puppy Crawl//DTD Suppressions 1.1//EN"
+ "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
+
+<!-- The suppression filter uses the pattern matcher .find method to match
+ the expressions against each file being examined. -->
+<suppressions>
+ <!-- Suppress checks for eclipse metafiles and directories -->
+ <suppress files="\.(project|classpath|settings)$" checks=".*" />
+
+ <!-- Suppress checks for all test code -->
+ <suppress files="[\\/]src[\\/]test[\\/]" checks=".*" />
+
+ <!-- Suppress checks for all generated code -->
+ <suppress files="[\\/]target[\\/]" checks=".*" />
+
+ <!-- Suppress checks for all archive type files -->
+ <suppress files=".+\.(?:jar|zip|war|class|tar|bin)$" checks=".*" />
+
+ <!-- Suppress checks for all image files -->
+ <suppress files=".+\.(?:png|gif|jpg|jpeg)$" checks=".*" />
+
+ <!-- Suppress checks for certain non-java files -->
+ <suppress files=".+\.(?:cql|xml|xsd|xsl|wsdl)$" checks=".*" />
+</suppressions>