Fix tests

This commit is contained in:
Paul-Henri Froidmont 2025-10-13 15:46:22 +02:00
parent efdc50eb1d
commit 87bd780f9f
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
34 changed files with 230 additions and 303 deletions

24
.scalafix.conf Normal file
View file

@ -0,0 +1,24 @@
rules = [
DisableSyntax,
LeakingImplicitClassVal,
NoAutoTupling,
NoValInForComprehension,
OrganizeImports
]
OrganizeImports {
targetDialect = Scala3
blankLines = Manual
expandRelative = true
removeUnused=false
groupedImports=Keep
groups = [
"---"
"re:(javax?|scala)\\."
"---"
"*"
"---"
"lu.foyer"
"---"
]
}