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

Update scalafmt-core to 3.8.2 #133

Merged
merged 3 commits into from
Jun 15, 2024
Merged
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.8.2
d8bae404caf2d24d898ee7b2f46c715be5949558
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.8.1"
version = "3.8.2"
runner.dialect = scala3

align.preset = more
Expand Down
8 changes: 5 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inThisBuild(
scalaVersion := "3.4.2",
organization := "se.thanh",
organizationName := "Thanh Le",
licenses += ("agpl-v3" -> url("https://opensource.org/license/agpl-v3")),
licenses += ("agpl-v3" -> url("https://opensource.org/license/agpl-v3")),
semanticdbEnabled := true, // for scalafix
Compile / packageDoc / publishArtifact := false,
dockerBaseImage := "openjdk:21",
Expand Down Expand Up @@ -51,13 +51,15 @@ lazy val api = (project in file("modules/api"))
libraryDependencies ++= Seq(
"com.disneystreaming.smithy4s" %% "smithy4s-core" % smithy4sVersion.value
)
).dependsOn(types)
)
.dependsOn(types)

lazy val domain = (project in file("modules/domain"))
.settings(
name := "domain",
commonSettings
).dependsOn(types)
)
.dependsOn(types)

lazy val db = (project in file("modules/db"))
.settings(
Expand Down
4 changes: 2 additions & 2 deletions project/BuildPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import sbt.ScriptedPlugin.autoImport._
import sbtrelease.ReleasePlugin, ReleasePlugin.autoImport._, ReleaseTransformations._, ReleaseKeys._
import sbt.ScriptedPlugin.autoImport._

import sbt.plugins.{JvmPlugin, SbtPlugin}
import sbt.plugins.{ JvmPlugin, SbtPlugin }

object BuildPlugin extends AutoPlugin {
override def trigger = allRequirements
Expand All @@ -12,7 +12,7 @@ object BuildPlugin extends AutoPlugin {

override lazy val projectSettings = releaseSettings

def releaseSettings: Seq[Setting[_]] =
def releaseSettings: Seq[Setting[?]] =
Seq(
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
Expand Down