Skip to content

Commit ba7d17a

Browse files
committed
Suppress org.intellij.lang.annotations from Dokka output.
These classes are added manually to JS/Native source sets to support `@Language` annotation for IDE in the common source and should not be exposed in documentation.
1 parent e73e5e7 commit ba7d17a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

gradle/dokka.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ subprojects {
6666
reportUndocumented.set(false)
6767
skipDeprecated.set(true)
6868
}
69+
70+
// JS/Native implementation of JVM-only `org.intellij.lang.annotations.Language` class to add syntax support by IDE.
71+
perPackageOption {
72+
matchingRegex.set("org\\.intellij\\.lang\\.annotations(\$|\\.).*")
73+
suppress.set(true)
74+
}
6975
}
7076
}
7177
}

0 commit comments

Comments
 (0)