Skip to content

Commit

Permalink
Merge pull request #531 from scala-steward/update/scalafmt-core-3.5.8
Browse files Browse the repository at this point in the history
scalafmt-core 3.5.8 (was 3.5.2)
  • Loading branch information
mkurz authored Jul 8, 2022
2 parents 08c4cd6 + 683abcd commit b193e77
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
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.5.8
3f6f5c9d187ed87c23c5321799dbce756a840a11
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.5.2
version = 3.5.8

runner.dialect = scala213

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ sealed trait AbstractGeneratedSource {
.split('\n')
.map { m =>
m.trim match {
case Meta(key, value) => (key -> value)
case UndefinedMeta(key) => (key -> "")
case Meta(key, value) => key -> value
case UndefinedMeta(key) => key -> ""
case _ => ("UNDEFINED", "")
}
}
Expand Down

0 comments on commit b193e77

Please sign in to comment.