aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.sbt3
1 files changed, 3 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
index 0ff2effa..9fba6a6b 100644
--- a/build.sbt
+++ b/build.sbt
@@ -130,6 +130,9 @@ lazy val docSettings = Seq(
Compile / doc := (ScalaUnidoc / doc).value,
autoAPIMappings := true,
Compile / doc / scalacOptions ++= Seq(
+ // ANTLR-generated classes aren't really part of public API and cause
+ // errors in ScalaDoc generation
+ "-skip-packages", "firrtl.antlr",
"-Xfatal-warnings",
"-feature",
"-diagrams",