All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.tassiluca.scalaextras..scalafix.conf Maven / Gradle / Ivy

There is a newer version: 2.1.6
Show newest version
rules = [
  DisableSyntax,
  RemoveUnused,
  OrganizeImports,
  NoValInForComprehension,
  LeakingImplicitClassVal,
  NoAutoTupling,
  RedundantSyntax,
]

DisableSyntax.noFinalize = true
DisableSyntax.noIsInstanceOf = true
DisableSyntax.noReturns = true

triggered.rules = [
  DisableSyntax
]

OrganizeImports {
  targetDialect = Auto
  coalesceToWildcardImportThreshold = 6
  expandRelative = true
    groups = [
    "re:javax?\\."
    "scala."
    "scala.meta."
    "*"
  ]
  groupedImports = AggressiveMerge
  removeUnused = true
  blankLines = Auto
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy