Skip to content

Commit

Permalink
Fix internal regexp (#475)
Browse files Browse the repository at this point in the history
This didn't work quite right in the conversion from groovy
  • Loading branch information
ZacSweers committed Jul 25, 2023
1 parent ce83153 commit a9780f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@ subprojects {
url.set(URI("https://kotlin.github.io/kotlinx.coroutines/index.html").toURL())
}
perPackageOption {
matchingRegex.set("/.*\\.internal.*/")
// language=RegExp
matchingRegex.set(".*\\.internal\\..*")
suppress.set(true)
}
val moduleMd = project.layout.projectDirectory.file("Module.md")
Expand Down

0 comments on commit a9780f6

Please sign in to comment.