Skip to content

Commit

Permalink
better project docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
rmgk committed Oct 6, 2024
1 parent cdaab8d commit 20bc1d8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ object Settings {
// however, this has some kinda false positives when subclasses pass parameters to superclasses.
def privateShadow(conf: TaskKey[?]*) = taskSpecificScalacOption("-Wshadow:private-shadow", conf*)

// seems to produce compiler crashes in some cases
// this is -Ysafe-init for scala 3.4 and below
// this is -Ysafe-init for scala 3.4 and below, but we don’t use that because seems to produce compiler crashes in those versions
def safeInit(conf: TaskKey[?]*) =
if (scala3VersionString.startsWith("3.5"))
taskSpecificScalacOption("-Wsafe-init", conf*)
Expand Down

0 comments on commit 20bc1d8

Please sign in to comment.