Skip to content

A simplistic Scalafix rule that sorts imports

License

Notifications You must be signed in to change notification settings

tpetillot/sort-imports

 
 

Repository files navigation

SortImports

GitHub Workflow Status GitHub commits since latest release GitHub last commit GitHub contributors

GitHub tag (latest SemVer) GitHub Release Date

Scala Steward badge License

Description

SortImports is a simplistic Scalafix rule.

It will organize imports into prefix-blocks and order imports inside those blocks alphabetically.

For example, these imports

import scala.util._
import scala.collection._
import java.util.Map
import com.oracle.net._
import com.sun._

will be organized as follows

import java.util.Map

import scala.collection._
import scala.util._

import com.oracle.net._

import com.sun._

if the blocks from the below Configuration example are used.

Important sort-imports does not (currently) take into account shadowing. It is a faily dumb sorter of imports. If your code is using shadowing, it may end up no longer compiling!

Usage

Latest version: GitHub tag (latest SemVer)

ThisBuild / scalafixDependencies += "com.nequissimus" %% "sort-imports" % "<VERSION>"

Configuration

rule = SortImports
SortImports.blocks = [
  "java.",
  "scala.",
  "*",
  "com.sun."
]

About

A simplistic Scalafix rule that sorts imports

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Scala 100.0%