Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.7.15
6112936f2778b2086f2ffbc52abb4a37c8c14b90
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
runner.dialect = scala3
version = 3.7.1
version = 3.7.15
maxColumn = 120
align.preset = most
spaces.inImportCurlyBraces = true
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ addSbtPlugin("com.github.sbt" % "sbt-git" % "2.0.0")

addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.15.0")

addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.3")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.3")
25 changes: 12 additions & 13 deletions sbt.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,23 @@ Global / lintUnusedKeysOnLoad := false

Test / parallelExecution := false
Test / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-oSD")
Test / turbo := true
Test / turbo := true

ThisBuild / autoStartServer := true
ThisBuild / autoStartServer := true
ThisBuild / includePluginResolvers := true
ThisBuild / turbo := true
ThisBuild / useSuperShell := true
ThisBuild / turbo := true
ThisBuild / useSuperShell := true

ThisBuild / watchBeforeCommand := Watch.clearScreen
ThisBuild / watchTriggeredMessage := Watch.clearScreenOnTrigger
ThisBuild / watchBeforeCommand := Watch.clearScreen
ThisBuild / watchTriggeredMessage := Watch.clearScreenOnTrigger
ThisBuild / watchForceTriggerOnAnyChange := true

ThisBuild / shellPrompt := { state => s"${prompt(projectName(state))}> " }
ThisBuild / watchStartMessage := {
case (iteration, ProjectRef(build, projectName), commands) =>
Some {
s"""|~${commands.map(styled).mkString(";")}
|Monitoring source files for ${prompt(projectName)}...""".stripMargin
}
ThisBuild / shellPrompt := { state => s"${prompt(projectName(state))}> " }
ThisBuild / watchStartMessage := { case (iteration, ProjectRef(build, projectName), commands) =>
Some {
s"""|~${commands.map(styled).mkString(";")}
|Monitoring source files for ${prompt(projectName)}...""".stripMargin
}
}

Global / cancelable := true
Expand Down