io.github.tassiluca.scalaextras..scalafix.conf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-scala-extras Show documentation
Show all versions of gradle-scala-extras Show documentation
A plugin to enhance the Scala gradle core plugin with quality assurance tools
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