Configure scalafix

This commit is contained in:
Paul-Henri Froidmont 2025-11-07 05:10:10 +01:00
parent bc113df11d
commit 8b2bf0f543
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
18 changed files with 67 additions and 27 deletions

20
.scalafix.conf Normal file
View file

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