Skip to content

Commit

Permalink
Revert changes to shapeless
Browse files Browse the repository at this point in the history
To avoid unnecessary conflicts, we disable -Ycheck-init on shapeless.
  • Loading branch information
liufengyun committed Feb 16, 2021
1 parent cd25cd8 commit 079baf2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions community-build/src/scala/dotty/communitybuild/projects.scala
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,8 @@ object projects:
lazy val shapeless = SbtCommunityProject(
project = "shapeless",
sbtTestCommand = "test",
sbtDocCommand = forceDoc("typeable", "deriving", "data")
sbtDocCommand = forceDoc("typeable", "deriving", "data"),
scalacOptions = Nil // disable -Ycheck-init, due to -Xfatal-warnings
)

lazy val xmlInterpolator = SbtCommunityProject(
Expand Down Expand Up @@ -537,7 +538,7 @@ object projects:
sbtTestCommand = "test",
sbtPublishCommand = "coreJVM/publishLocal;coreJS/publishLocal",
dependencies = List(discipline),
scalacOptions = Nil // disabble -Ycheck-init
scalacOptions = Nil // disable -Ycheck-init
)

lazy val simulacrumScalafixAnnotations = SbtCommunityProject(
Expand Down

0 comments on commit 079baf2

Please sign in to comment.