/scalafix-alphabetize

Alphabetically sorts fields and methods.

Primary LanguageScala

ScalaFix Alphabetize

Github Actions

Alphabetically sorts the methods in a file

Example

Input

trait A {
  def b: Unit
  def a: Unit
}

Output

trait A {
  def a: Unit
  def b: Unit
}

Usage

From the sbt console

scalafix https://raw.githubusercontent.com/tusharmath/scalafix-alphabetize/master/rules/src/main/scala/fix/ScalafixAlphabetize.scala