Alphabetically sorts the methods in a file
Input
trait A {
def b: Unit
def a: Unit
}
Output
trait A {
def a: Unit
def b: Unit
}
From the sbt
console
scalafix https://raw.githubusercontent.com/tusharmath/scalafix-alphabetize/master/rules/src/main/scala/fix/ScalafixAlphabetize.scala