OSDN Git Service

Maven plugin 更新
[jovsonz/Jovsonz.git] / src / main / config / suppressions.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2
3 <!DOCTYPE suppressions PUBLIC
4     "-//Puppy Crawl//DTD Suppressions 1.1//EN"
5     "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
6
7 <!--
8     Checkstyle用警告抑止設定
9     ※ SuppressionFilter モジュール用
10
11     [ http://checkstyle.sourceforge.net/ ]
12
13     Copyright(c) 2010 olyutorskii
14 -->
15
16
17 <suppressions>
18
19     <!-- Class Design -->
20     <suppress files="" checks="DesignForExtension" />
21
22     <!-- Coding -->
23     <suppress files="" checks="ExplicitInitialization" />
24     <suppress files="" checks="FinalLocalVariable" />
25     <suppress files="" checks="MagicNumber" />
26
27     <!-- Imports -->
28     <suppress files="" checks="ImportControl" />
29
30     <!-- Javadoc Comments -->
31     <suppress files="" checks="SummaryJavadocCheck" />
32         <!-- 句読点対応待ち -->
33     <suppress files="" checks="SingleLineJavadoc" />
34         <!-- ignoredTagsプロパティ対応待ち -->
35
36     <!-- Miscellaneous -->
37     <suppress files="" checks="FinalParameters" />
38     <suppress files="" checks="TrailingComment" />
39
40 </suppressions>
41
42
43 <!-- EOF -->