Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More responsible skipping #163

Merged
merged 11 commits into from
Feb 11, 2022
Prev Previous commit
Next Next commit
Default tlSkipIrrelevantScalas to false
  • Loading branch information
armanbilge committed Feb 11, 2022
commit 919c1cf8f4d76bf159c9730c736c05c29272d938
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object TypelevelKernelPlugin extends AutoPlugin {
object autoImport {
lazy val tlIsScala3 = settingKey[Boolean]("True if building with Scala 3")
lazy val tlSkipIrrelevantScalas = settingKey[Boolean](
"Sets skip := true for a project if the current scalaVersion is not in that project's crossScalaVersions (default: true)")
"Sets skip := true for a project if the current scalaVersion is not in that project's crossScalaVersions (default: false)")

def tlReplaceCommandAlias(name: String, contents: String): Seq[Setting[State => State]] =
Seq(GlobalScope / onLoad ~= { (f: State => State) =>
Expand Down