mirror of
https://github.com/phfroidmont/scalive.git
synced 2025-12-25 05:26:59 +01:00
21 lines
316 B
Text
21 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"
|
||
|
|
]
|
||
|
|
}
|