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
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@

# Scala Steward: Reformat with scalafmt 3.8.5
74f069ccdaa91872cb77dc1f902752221d588db1

# Scala Steward: Reformat with scalafmt 3.10.5
fd434cc8db76d383e61f2c222f6bf263c883921d
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.10.4"
version = "3.10.5"

align.preset = more
maxColumn = 100
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ object DirectiveHandler {
$scopedDirective.maybePath
).map { r =>
scopeOpt -> ${
genNew(List(newArgs.updated(idx, '{ r }).map(_.asTerm)))
genNew(List(newArgs.updated(idx, 'r).map(_.asTerm)))
.asExprOf[T]
}
}
Expand Down Expand Up @@ -361,7 +361,7 @@ object DirectiveHandler {
}

def handleValues(scopedDirective: ScopedDirective, logger: Logger) =
${ handleValuesImpl('{ scopedDirective }, '{ logger }) }
${ handleValuesImpl('scopedDirective, 'logger) }
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion project/deps/package.mill.scala
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ object Deps {
def jsoniterScala = "2.38.5"
def jsoup = "1.21.2"
def scalaMeta = "4.14.1"
def scalafmt = "3.10.4"
def scalafmt = "3.10.5"
def scalaNative04 = "0.4.17"
def scalaNative05 = "0.5.10"
def scalaNative = scalaNative05
Expand Down
Loading