~wegtam/smederee
~wegtam/smederee/.scalafix.conf
~wegtam/smederee/.scalafix.conf
0 | rules = [ |
1 | DisableSyntax |
2 | LeakingImplicitClassVal |
3 | NoValInForComprehension |
4 | OrganizeImports |
5 | ] |
6 |
|
7 | DisableSyntax { |
8 | noAsInstanceOf = true |
9 | noDefaultArgs = true |
10 | noFinalVal = false |
11 | noFinalize = true |
12 | noIsInstanceOf = true |
13 | noNulls = true |
14 | noReturns = true |
15 | noThrows = true |
16 | noUniversalEquality = true |
17 | noValPatterns = true |
18 | noVars = true |
19 | noWhileLoops = true |
20 | noXml = false |
21 | } |
22 |
|
23 | OrganizeImports { |
24 | blankLines = Auto |
25 | coalesceToWildcardImportThreshold = null |
26 | expandRelative = false |
27 | groupExplicitlyImportedImplicitsSeparately = false // No effect for Scala 3 |
28 | groupedImports = Explode // Have imports line by line to minimize merge conflicts. |
29 | groups = [ |
30 | "re:javax?\\." |
31 | "*" |
32 | "munit." |
33 | "org.scalacheck." |
34 | "scala." |
35 | ] |
36 | importSelectorsOrder = Ascii |
37 | importsOrder = Ascii |
38 | preset = DEFAULT |
39 | removeUnused = false // Workaround for Scala 3 |
40 | targetDialect = Scala3 |
41 | } |