We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3907126 commit 62d2af1Copy full SHA for 62d2af1
scala/private/rules/scala_doc.bzl
@@ -83,6 +83,8 @@ def _scala_doc_impl(ctx):
83
# Construct scaladoc args, which also include scalac args.
84
# See `scaladoc -help` for more information.
85
args = ctx.actions.args()
86
+ args.set_param_file_format("multiline")
87
+ args.use_param_file(param_file_arg = "@%s", use_always = True)
88
args.add("-usejavacp")
89
args.add("-nowarn") # turn off warnings for now since they can obscure actual errors for large scala_doc targets
90
args.add_all(ctx.attr.scalacopts)
0 commit comments