Skip to content

Commit

Permalink
Add suppression for .png file
Browse files Browse the repository at this point in the history
  • Loading branch information
federicobucchi committed Nov 20, 2024
1 parent e92553d commit 5076f29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<suppressions>
<suppress checks="LineLength"
files="docs[\\/]modules[\\/]ROOT[\\/]assets[\\/]images[\\/].+\.svg"/>
files="docs[\\/]modules[\\/]ROOT[\\/]assets[\\/]images[\\/].+\.(svg|png|ico)"/>
<!-- mapOnError supports re-throwing a Throwable from onError(Throwable) -->
<suppress checks="IllegalThrowsCheck" files="io[\\/]servicetalk[\\/]concurrent[\\/]api[\\/]ScanWithMapper.java"/>
<suppress checks="IllegalThrowsCheck" files="io[\\/]servicetalk[\\/]concurrent[\\/]api[\\/]ScanMapper.java"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class ServiceTalkCorePlugin implements Plugin<Project> {
source = fileTree(".") {
includes = ["gradle/**", "*.gradle", "*.properties", "scripts/**", "buildSrc/**", "docs/**"]
excludes = ["**/gradle/wrapper/**", "**/build/**", "**/.gradle/**", "**/gradlew*", "**/.cache/**",
"**/*.svg", "**/.out/**", "**/node_modules/**", "**/*.png", "**/*.zip"]
"**/*.svg", "**/.out/**", "**/node_modules/**", "**/*.png", "**/*.ico", "**/*.zip"]
}
}

Expand Down

0 comments on commit 5076f29

Please sign in to comment.