scalive/.scalafix.conf

21 lines
316 B
Text
Raw Permalink Normal View History

2025-11-07 05:10:10 +01:00
rules = [
DisableSyntax,
LeakingImplicitClassVal,
NoAutoTupling,
NoValInForComprehension,
OrganizeImports
]
OrganizeImports {
targetDialect = Scala3
blankLines = Auto
expandRelative = true
removeUnused=true
groupedImports=Keep
groups = [
"re:(javax?|scala)\\."
"*"
"scalive"
]
}