* Move `checkstyle-conventions.gradle` content to the `build.gradle` since it is short enough * Remove `checkstyle-header.txt` and its handling in favor of Spring Javaformat out-of-the box logic * Upgrade to Gradle `8.5` * Remove suppression for `Javadoc*` checks since it is handled by Spring Javaformat * Leave only `MissingJavadocMethodCheck` exclusion from `SpringChecks` since all others really make sense for our code quality
10 lines
368 B
XML
10 lines
368 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE suppressions PUBLIC
|
|
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
|
|
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
|
|
<suppressions>
|
|
<suppress files="package-info\.java" checks=".*" />
|
|
<suppress files="[\\/]test[\\/]" checks="RequireThis|AvoidStaticImport" />
|
|
<suppress files="Proto" checks=".*"/>
|
|
</suppressions>
|