|
7 | 7 | <!-- Add Javadoc suppression for any test files (ie. ones that live under src/test/java). --> |
8 | 8 | <suppress checks="Javadoc" files="src[/\\]test[/\\]java[/\\].*.java"/> |
9 | 9 |
|
10 | | - |
11 | 10 | <suppress checks="Javadoc" files=".*CoverageReporter\.java"/> |
12 | 11 | <suppress checks="Javadoc" files=".*[/\\]implementation[/\\].*\.java"/> |
13 | | - <suppress checks="Javadoc" files=".*[/\\]com[/\\]microsoft[/\\].*"/> |
14 | 12 | <suppress checks="Header" files=".*package-info.java"/> |
15 | 13 |
|
| 14 | + <!-- Suppress all checkstyle rules for Track 1/management libraries. --> |
| 15 | + <suppress checks="[a-zA-Z0-9]*" files=".*[/\\]com[/\\]microsoft[/\\].*"/> |
| 16 | + |
16 | 17 | <!-- ignore missing javadoc in samples --> |
17 | 18 | <suppress checks="MissingJavadocMethod" files=".*[/\\]samples[/\\].*\.java"/> |
18 | 19 | <suppress checks="MissingJavadocType" files=".*[/\\]samples[/\\].*\.java"/> |
|
73 | 74 | <suppress checks="MethodName" files="SerdeJacksonAnnotationIntrospector.java"/> |
74 | 75 |
|
75 | 76 | <!-- Some classes are named *Builder but are not @ServiceClientBuilder --> |
76 | | - <suppress checks="com.azure.tools.checkstyle.checks.ServiceClientBuilderCheck" files="com.azure.android.core.http.httpurlconnection.HttpUrlConnectionAsyncHttpClientBuilder"/> |
| 77 | + <suppress checks="com.azure.tools.checkstyle.checks.ServiceClientBuilderCheck" |
| 78 | + files="com.azure.android.core.http.httpurlconnection.HttpUrlConnectionAsyncHttpClientBuilder"/> |
| 79 | + |
77 | 80 | <!-- Some classes are named *Builder but are not @ServiceClientBuilder --> |
78 | | - <suppress checks="com.azure.tools.checkstyle.checks.ServiceClientBuilderCheck" files="com.azure.android.core.http.okhttp.OkHttpAsyncHttpClientBuilder"/> |
| 81 | + <suppress checks="com.azure.tools.checkstyle.checks.ServiceClientBuilderCheck" |
| 82 | + files="com.azure.android.core.http.okhttp.OkHttpAsyncHttpClientBuilder"/> |
79 | 83 |
|
80 | 84 | <!-- Files licensed with alternate license in the header --> |
81 | 85 | <suppress checks="Header" files="com.azure.android.core.util.CancellationToken.java"/> |
|
87 | 91 | <!-- false positive, the field needs to be non-final for copy api to work --> |
88 | 92 | <suppress checks="EnforceFinalFields" files="com.azure.android.core.http.HttpRequest.java"/> |
89 | 93 |
|
90 | | - <suppress checks="VisibilityModifier" files="com.azure.android.core.rest.implementation.HttpResponseExceptionInfo.java"/> |
| 94 | + <suppress checks="VisibilityModifier" |
| 95 | + files="com.azure.android.core.rest.implementation.HttpResponseExceptionInfo.java"/> |
91 | 96 |
|
92 | 97 | <!-- Do not worry about leaking implementation API out of azure-core-test --> |
93 | 98 | <suppress checks="com.azure.tools.checkstyle.checks.NoImplInPublicAPI" files="com.azure.android.core.test.*"/> |
|
158 | 163 | <suppress checks="com.azure.tools.checkstyle.checks.ThrowFromClientLogger" |
159 | 164 | files="com.azure.android.core.http.httpurlconnection.HttpUrlConnectionAsyncHttpClientBuilder.java"/> |
160 | 165 |
|
161 | | - <suppress checks="LineLength" files=".*[/\\]com[/\\]azure[/\\]android[/\\]communication[/\\]chat[/\\]implementation[/\\].*"/> |
162 | | - <suppress checks="Indentation" files=".*[/\\]com[/\\]azure[/\\]android[/\\]communication[/\\]chat[/\\]implementation[/\\].*"/> |
| 166 | + <suppress checks="LineLength" |
| 167 | + files=".*[/\\]com[/\\]azure[/\\]android[/\\]communication[/\\]chat[/\\]implementation[/\\].*"/> |
| 168 | + <suppress checks="Indentation" |
| 169 | + files=".*[/\\]com[/\\]azure[/\\]android[/\\]communication[/\\]chat[/\\]implementation[/\\].*"/> |
163 | 170 |
|
164 | | - <suppress checks="com.azure.tools.checkstyle.checks.ThrowFromClientLogger" files="com.azure.android.communication.chat.implementation.ChatImpl.java"/> |
165 | | - <suppress checks="com.azure.tools.checkstyle.checks.ThrowFromClientLogger" files="com.azure.android.communication.chat.implementation.ChatThreadImpl.java"/> |
| 171 | + <suppress checks="com.azure.tools.checkstyle.checks.ThrowFromClientLogger" |
| 172 | + files="com.azure.android.communication.chat.implementation.ChatImpl.java"/> |
| 173 | + <suppress checks="com.azure.tools.checkstyle.checks.ThrowFromClientLogger" |
| 174 | + files="com.azure.android.communication.chat.implementation.ChatThreadImpl.java"/> |
166 | 175 |
|
167 | | - <suppress checks="com.azure.tools.checkstyle.checks.ServiceClientCheck" files="com.azure.android.communication.chat.ChatThreadAsyncClient.java"/> |
168 | | - <suppress checks="com.azure.tools.checkstyle.checks.ServiceClientCheck" files="com.azure.android.communication.chat.ChatThreadClient.java"/> |
| 176 | + <suppress checks="com.azure.tools.checkstyle.checks.ServiceClientCheck" |
| 177 | + files="com.azure.android.communication.chat.ChatThreadAsyncClient.java"/> |
| 178 | + <suppress checks="com.azure.tools.checkstyle.checks.ServiceClientCheck" |
| 179 | + files="com.azure.android.communication.chat.ChatThreadClient.java"/> |
169 | 180 |
|
170 | 181 | <!-- Parcel types are allowed to be exposed in public API --> |
171 | 182 | <suppress checks="com.azure.tools.checkstyle.checks.ExternalDependencyExposedCheck" |
|
0 commit comments