Skip to content

Commit

Permalink
Fix internal regexp
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 23, 2023
1 parent 2739083 commit 3b6f750
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 3b6f750

Please sign in to comment.