2020-07-25 02:37:53 +08:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
<!DOCTYPE suppressions PUBLIC
|
|
|
|
|
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
|
|
|
|
|
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
|
|
|
|
|
<suppressions>
|
2020-07-28 01:01:32 +08:00
|
|
|
<suppress files=".*" checks="JavadocMethod" />
|
|
|
|
|
<suppress files=".*" checks="JavadocStyle" />
|
|
|
|
|
<suppress files=".*" checks="JavadocTagContinuationIndentation" />
|
|
|
|
|
<suppress files=".*" checks="JavadocType" />
|
|
|
|
|
<suppress files=".*" checks="JavadocVariable" />
|
2020-07-28 02:10:07 +08:00
|
|
|
<suppress files=".*" checks="NonEmptyAtclauseDescription" />
|
2020-07-30 09:18:00 +08:00
|
|
|
<suppress files=".*" checks="SpringJavadoc" />
|
2020-07-25 04:35:18 +08:00
|
|
|
|
|
|
|
|
<!-- Ignore third-party code -->
|
|
|
|
|
<suppress files="BCrypt\.java|BCryptTests\.java" checks=".*"/>
|
|
|
|
|
<suppress files="org[\\/]springframework[\\/]security[\\/]core[\\/]ComparableVersion\.java" checks=".*"/>
|
2020-07-27 13:23:37 +08:00
|
|
|
|
|
|
|
|
<!-- InterfaceIsType rules we can't fix until a major revision due to back compatibility -->
|
|
|
|
|
<suppress files="JwsAlgorithms\.java" checks="InterfaceIsType"/>
|
|
|
|
|
<suppress files="JwtClaimNames\.java" checks="InterfaceIsType"/>
|
|
|
|
|
<suppress files="OAuth2ErrorCodes\.java" checks="InterfaceIsType"/>
|
|
|
|
|
<suppress files="OAuth2ParameterNames\.java" checks="InterfaceIsType"/>
|
|
|
|
|
<suppress files="PkceParameterNames\.java" checks="InterfaceIsType"/>
|
|
|
|
|
<suppress files="IdTokenClaimNames\.java" checks="InterfaceIsType"/>
|
|
|
|
|
<suppress files="OidcScopes\.java" checks="InterfaceIsType"/>
|
|
|
|
|
<suppress files="StandardClaimNames\.java" checks="InterfaceIsType"/>
|
|
|
|
|
<suppress files="OidcParameterNames\.java" checks="InterfaceIsType"/>
|
|
|
|
|
<suppress files="BearerTokenErrorCodes\.java" checks="InterfaceIsType"/>
|
|
|
|
|
<suppress files="OAuth2IntrospectionClaimNames\.java" checks="InterfaceIsType"/>
|
2021-06-12 07:33:00 +08:00
|
|
|
<suppress files="OAuth2TokenIntrospectionClaimNames\.java" checks="InterfaceIsType"/>
|
2020-07-27 13:23:37 +08:00
|
|
|
<suppress files="Saml2ErrorCodes\.java" checks="InterfaceIsType"/>
|
2021-09-15 07:40:12 +08:00
|
|
|
<suppress files="Saml2ParameterNames\.java" checks="InterfaceIsType"/>
|
2020-07-30 13:05:08 +08:00
|
|
|
|
|
|
|
|
<!-- Method Visibility that we can't reduce -->
|
|
|
|
|
<suppress files="AbstractAclVoterTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="AbstractSecurityWebSocketMessageBrokerConfigurerTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="AnnotationParameterNameDiscovererTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="AnnotationSecurityAspectTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="AuthenticationPrincipalArgumentResolverTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="ELRequestMatcherContext\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="EnableWebFluxSecurityTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="ExpressionBasedPreInvocationAdviceTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="ExpressionUrlAuthorizationConfigurerTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="Jsr250MethodSecurityMetadataSourceTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="MapBasedMethodSecurityMetadataSourceTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="OAuth2ResourceServerBeanDefinitionParserTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="ObjectIdentityImplTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="ObjectIdentityRetrievalStrategyImplTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="ProtectPointcutPostProcessor\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="ReactiveMethodSecurityConfigurationTests" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="WebSocketMessageBrokerConfigTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="WebSecurityConfigurationTests\.java" checks="SpringMethodVisibility"/>
|
|
|
|
|
<suppress files="WithSecurityContextTestExecutionListenerTests\.java" checks="SpringMethodVisibility"/>
|
2020-11-17 08:56:45 +08:00
|
|
|
<suppress files="AbstractOAuth2AuthorizationGrantRequestEntityConverter\.java" checks="SpringMethodVisibility"/>
|
2020-11-17 08:56:45 +08:00
|
|
|
<suppress files="JoseHeader\.java" checks="SpringMethodVisibility"/>
|
2022-10-03 01:01:34 +08:00
|
|
|
|
|
|
|
|
<!-- Lambdas that we can't replace with a method reference because a closure is required -->
|
|
|
|
|
<suppress files="BearerTokenAuthenticationFilter\.java" checks="SpringLambda"/>
|
2024-10-28 19:38:45 +08:00
|
|
|
|
|
|
|
|
<!-- Ignore String.toUpperCase() and String.toLowerCase() checks in tests -->
|
|
|
|
|
<suppress files="[\\/]src[\\/]test[\\/]" checks="RegexpSinglelineJava" id="toLowerCaseWithoutLocale"/>
|
|
|
|
|
<suppress files="[\\/]src[\\/]test[\\/]" checks="RegexpSinglelineJava" id="toUpperCaseWithoutLocale"/>
|
2020-07-25 02:37:53 +08:00
|
|
|
</suppressions>
|