scala-code-formatter

This Package adds scala formatting capabilities to Atom using the tool scalafmt.

SvenWi

1,576

0

0.2.0

MIT

GitHub

scala-code-formatter package

This Package adds scala formatting capabilities to Atom using the tool scalafmt.

As a example:

object NeedsFormat { def too(much:Int, stuff: String, in: Int, a: String, line: Int): String = stuff }

will be formatted to:

object NeedsFormat {
  def too(much: Int, stuff: String, in: Int, a: String, line: Int): String =
    stuff
}

Requirements

Usage

Configuration

See Scalafmt http://scalameta.org/scalafmt/#Configuration for further details.

Thanks