Skip to content

Commit

Permalink
Make suppresions work on windows paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasPerkins1123 committed Feb 9, 2024
1 parent 7c41420 commit 531c3e0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions config/nohttp/suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
<suppressions>
<suppress files="node_modules/.*" checks=".*"/>
<suppress files="node/.*" checks=".*"/>
<suppress files="build/.*" checks=".*"/>
<suppress files="target/.*" checks=".*"/>
<suppress files="node_modules[\\/].*" checks=".*"/>
<suppress files="node[\\/].*" checks=".*"/>
<suppress files="build[\\/].*" checks=".*"/>
<suppress files="target[\\/].*" checks=".*"/>
<suppress files=".+\.(jar|git|ico|p12|gif|jks|jpg|svg|log)" checks="NoHttp"/>
</suppressions>
8 changes: 4 additions & 4 deletions src/checkstyle/nohttp-checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
<suppressions>
<suppress files="node_modules/.*" checks=".*"/>
<suppress files="node/.*" checks=".*"/>
<suppress files="build/.*" checks=".*"/>
<suppress files="target/.*" checks=".*"/>
<suppress files="node_modules[\\/].*" checks=".*"/>
<suppress files="node[\\/].*" checks=".*"/>
<suppress files="build[\\/].*" checks=".*"/>
<suppress files="target[\\/].*" checks=".*"/>
<suppress files=".+\.(jar|git|ico|p12|gif|jks|jpg|svg|log)" checks="NoHttp"/>
</suppressions>

0 comments on commit 531c3e0

Please sign in to comment.