Skip to content

Commit

Permalink
minor: moves checker framework suppressions under config
Browse files Browse the repository at this point in the history
  • Loading branch information
rnveach authored and nrmancuso committed Nov 27, 2022
1 parent cd3daa9 commit b2e49dd
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ci/checker-framework.groovy
Expand Up @@ -74,7 +74,7 @@ private static Set<String> getCheckerFrameworkProfiles() {
private static int checkCheckerFrameworkReport(final String profile) {
final XmlParser xmlParser = new XmlParser()
final String suppressedErrorsFileUri =
".${File.separator}.ci${File.separator}" +
".${File.separator}config${File.separator}" +
"checker-framework-suppressions${File.separator}${profile}-suppressions.xml"
final List<List<String>> checkerFrameworkErrors = getCheckerFrameworkErrors(profile)
List<CheckerFrameworkError> errors = Collections.emptyList()
Expand Down
2 changes: 1 addition & 1 deletion .ci/jsoref-spellchecker/exclude.pl
Expand Up @@ -17,7 +17,7 @@
/openjdk17-excluded\.files$
^cdg-pitest-licence.txt$
^.teamcity/
^.ci/checker-framework-suppressions/
^config/checker-framework-suppressions/
^config/archunit-store/
^codeship.encrypted$
);
Expand Down
2 changes: 1 addition & 1 deletion config/checkstyle_non_main_files_suppressions.xml
Expand Up @@ -98,7 +98,7 @@
<suppress id="lineLength" files=".ci[\\/]error-prone-suppressions[\\/].*"/>

<!-- this file cannot be line wrapped, It contains a list of suppressions -->
<suppress id="lineLength" files=".ci[\\/]checker-framework-suppressions[\\/].*"/>
<suppress id="lineLength" files="config[\\/]checker-framework-suppressions[\\/].*"/>

<!-- this file cannot be line wrapped, it contains cdg pitest licence -->
<suppress id="lineLength" files="cdg-pitest-licence.txt"/>
Expand Down

0 comments on commit b2e49dd

Please sign in to comment.