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.6 #243

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# Scala Steward: Reformat with scalafmt 3.7.17
857b223f8a7fe916a117823759ef8f1c415ec485

# Scala Steward: Reformat with scalafmt 3.8.6
8661794fbdd9c7e872a60f6919597d5156734541
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.6"
runner.dialect = scala3
align.preset = more
maxColumn = 100
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ class ConversationPollingHandler(using logger: Logger[IO]):
signalConf.signalPhone,
List(k.phone)
)
)
)
))
}

(for
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,9 @@ case class PetriCompiler[F[_]](interfaceName: String)(using
placeParams
.map { p =>
val params: (String, String) =
(dashToCapitalize(p._1) -> s"${dashToCamelCase(p._2).map(s => s"$s: String").mkString(", ")}")
(dashToCapitalize(
p._1
) -> s"${dashToCamelCase(p._2).map(s => s"$s: String").mkString(", ")}")
val chatBotCode =
s"""
|package xyz.didx.gleibnif
Expand Down
Loading