Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Ignore scaladoc files in broken links checks #4167

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/package.mill
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,12 @@ object `package` extends RootModule {
.toMap

val brokenLinksPerPath: Seq[(os.Path, Seq[(String, String)])] =
for ((path, remoteLinks, localLinks, ids) <- allLinksAndAnchors0) yield{
for {
(path, remoteLinks, localLinks, ids) <- allLinksAndAnchors0
// Skip scaladoc files when scanning for broken links because some
// of those are scaladoc bugs outside of our control.
if !path.segments.contains("api")
} yield{
(
path,
localLinks.flatMap{case (elementString, url) =>
Expand Down
Loading