mirror of
https://github.com/phfroidmont/scalive.git
synced 2025-12-25 13:36:59 +01:00
20 lines
316 B
Text
20 lines
316 B
Text
rules = [
|
|
DisableSyntax,
|
|
LeakingImplicitClassVal,
|
|
NoAutoTupling,
|
|
NoValInForComprehension,
|
|
OrganizeImports
|
|
]
|
|
|
|
OrganizeImports {
|
|
targetDialect = Scala3
|
|
blankLines = Auto
|
|
expandRelative = true
|
|
removeUnused=true
|
|
groupedImports=Keep
|
|
groups = [
|
|
"re:(javax?|scala)\\."
|
|
"*"
|
|
"scalive"
|
|
]
|
|
}
|