Skip to content

Instantly share code, notes, and snippets.

@janjaali
Created March 14, 2021 13:24
Show Gist options
  • Save janjaali/2df8dbc6bedce7e275582a472bfd378f to your computer and use it in GitHub Desktop.
Save janjaali/2df8dbc6bedce7e275582a472bfd378f to your computer and use it in GitHub Desktop.
ScalaFix Organize Imports
// https://github.com/liancheng/scalafix-organize-imports
OrganizeImports {
blankLines = Auto
coalesceToWildcardImportThreshold = 5
expandRelative = false
groupExplicitlyImportedImplicitsSeparately = false
groupedImports = Merge
groups = [
"*"
"java."
"scala."
]
importSelectorsOrder = Ascii
importsOrder = Ascii
preset = DEFAULT
removeUnused = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment