format source with scalafmt, #2

This commit is contained in:
Auto Format 2022-11-03 09:46:22 +01:00 committed by Matthew de Detrich
parent 0e876025e8
commit 15b163da74
980 changed files with 8776 additions and 8578 deletions

View file

@ -40,10 +40,10 @@ trait ScalafixSupport {
def updateProjectCommands(alias: String, value: String): Def.Setting[Seq[Command]] = {
commands := {
commands.value.filterNot({
commands.value.filterNot {
case command: SimpleCommand => command.name == alias
case _ => false
}) :+ BasicCommands.newAlias(name = alias, value = value)
} :+ BasicCommands.newAlias(name = alias, value = value)
}
}
}