Skip to content

Commit 9703081

Browse files
committed
Disable -Xsource:3 in docs due to mdoc failures:
``` error: basics.md:97 (mdoc generated code) could not find implicit value for parameter t: pprint.TPrint[zio.ZIO[zio.Has[zio.console.Console.Service],Throwable,β$0$]] val injector: Injector[RIO[Console, _]] = Injector[RIO[Console, _]](); $doc.binder(injector, 2, 4, 2, 12) ^ error: basics.md:109 (mdoc generated code) could not find implicit value for parameter t: pprint.TPrint[zio.ZIO[zio.Has[zio.console.Console.Service],Throwable,β$0$]] val resource = injector.produce(plan); $doc.binder(resource, 4, 4, 4, 12) ^ error: basics.md:1359 (mdoc generated code) could not find implicit value for parameter t: pprint.TPrint[zio.ZIO[zio.Has[zio.console.Console.Service],Throwable,β$9$]] val res51 = chooseInterpreters(true); $doc.binder(res51, 26, 0, 26, 24) ```
1 parent 1e55971 commit 9703081

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

build.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3217,6 +3217,7 @@ lazy val `microsite` = project.in(file("doc/microsite"))
32173217
case (_, _) => Seq.empty
32183218
} },
32193219
scalacOptions -= "-Wconf:any:error",
3220+
scalacOptions -= "-Xsource:3",
32203221
coverageEnabled := false,
32213222
publish / skip := true,
32223223
DocKeys.prefix := {if (isSnapshot.value) {

project/Deps.sc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,7 @@ object Izumi {
582582
depends = all.flatMap(_.artifacts).map(_.name in Scope.Compile.all).distinct,
583583
settings = Seq(
584584
"scalacOptions" -= "-Wconf:any:error",
585+
"scalacOptions" -= "-Xsource:3",
585586
"coverageEnabled" := false,
586587
"skip" in SettingScope.Raw("publish") := true,
587588
"DocKeys.prefix" :=

0 commit comments

Comments
 (0)