-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckstyle-suppressions.xml
40 lines (32 loc) · 1.45 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
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<!--
semanticcms-core-taglib - Java API for modeling web page content and relationships in a JSP environment.
Copyright (C) 2022 AO Industries, Inc.
7262 Bull Pen Cir
Mobile, AL 36695
This file is part of semanticcms-core-taglib.
semanticcms-core-taglib is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
semanticcms-core-taglib is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with semanticcms-core-taglib. If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE suppressions PUBLIC
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
<suppressions>
<!-- TODO: Complete Javadocs -->
<suppress checks="(MissingJavadocMethod|MissingJavadocType|SummaryJavadoc)" />
<!-- Will keep "TEI" suffix for taglib <tei-class> implementations -->
<suppress
checks="AbbreviationAsWordInName"
files="[/\\][A-Z][A-Za-z]*TagTEI\.java$"
message="'[A-Z][A-Za-z]*TagTEI'"
/>
</suppressions>