-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckstyle-suppressions.xml
71 lines (59 loc) · 2.3 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8"?>
<!--
ao-encoding - High performance streaming character encoding.
Copyright (C) 2022, 2023, 2024 AO Industries, Inc.
7262 Bull Pen Cir
Mobile, AL 36695
This file is part of ao-encoding.
ao-encoding 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.
ao-encoding 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 ao-encoding. 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)" />
<!-- Cannot find how to allow <p> inside @param and @return -->
<suppress
checks="JavadocParagraph"
files="[/\\]com[/\\]aoapps[/\\]encoding[/\\]Encode\.java$"
/>
<suppress
checks="JavadocParagraph"
files="[/\\]com[/\\]aoapps[/\\]encoding[/\\]Encoding\.java$"
/>
<!-- TODO: Remove in 8.0.0 release -->
<suppress
checks="AbbreviationAsWordInName"
files="[/\\]com[/\\]aoapps[/\\]encoding[/\\]Doctype\.java$"
message="'supportsIRI'"
/>
<!-- Using "Ex" for generic exceptions, since "E" is often "Element" -->
<suppress
checks="(InterfaceTypeParameterName|MethodTypeParameterName)"
message="'Ex'"
/>
<!-- Using Unicode escapes because easier to match RFC sources -->
<suppress checks="AvoidEscapedUnicodeCharacters" />
<!-- Consistency with standard "URLDecoder", "URLEncoder", and "URL" -->
<suppress
checks="AbbreviationAsWordInName"
files="[/\\]com[/\\]aoapps[/\\]encoding[/\\]Doctype\.java$"
message="'getSupportsIRI'"
/>
<suppress
checks="AbbreviationAsWordInName"
files="[/\\]com[/\\]aoapps[/\\]encoding[/\\]EncodingContext\.java$"
message="'encodeURL'"
/>
</suppressions>