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