Welcome to sbt-scalariform, an sbt plugin adding support for source code formatting using Scalariform.
sbt-scalariform is a plugin for sbt 0.13 (and 0.12). Please make sure that you are using an appropriate sbt release. In order to download and install sbt, please refer to sbt Getting Started Guide / Setup.
As sbt-scalariform is a plugin for sbt, it is installed like any other sbt plugin, that is by mere configuration. For details about using sbt plugins, please refer to sbt Getting Started Guide / Using Plugins.
Most probably you can skip the details and just add sbt-scalariform to your local plugin definition. Local plugins are defined in a plugins.sbt
file in the project/
folder of your project.
To add sbt-scalariform to your build using sbt 0.13, just add the below setting, paying attention to blank lines:
... // Other settings
addSbtPlugin("com.typesafe.sbt" % "sbt-scalariform" % "1.2.1")
To add sbt-scalariform to your build using sbt 0.12:
... // Other settings
addSbtPlugin("com.typesafe.sbt" % "sbt-scalariform" % "1.0.1")
After adding the sbt-scalariform plugin like this, you still have to configure it, i.e. add the relevant settings to your build definition. Please read on ...
Add the scalariformSettings
to your local build definition file build.sbt
or scalariform.sbt
:
... // Other settings
scalariformSettings
This will add the task scalariformFormat
in the scopes compile
and test
and additionally run this task automatically when compiling; for more control see the section Advanced configuration below
Now you are ready to go. Either start sbt or, if it was already started, reload the current session by executing the reload
command. If everything worked, you should have the new command scalariformFormat
available as well automatic formatting on compile
and test:compile
activated.
If you added the settings for this plugin like described above, you can either format your sources manually or automatically:
-
Whenever you run the tasks
compile
ortest:compile
, your source files will be automatically formatted by Scalariform -
If you want to start formatting your source files explicitly, just run the task
scalariformFormat
ortest:scalariformFormat
sbt-scalariform comes with various configuration options. Changing the formatting preferences and deactivating the automatic formatting on compile are probably the most important ones and described in detail.
You can provide your own formatting preferences for Scalariform via the setting key ScalariformKeys.preferences
which expects an instance of IFormattingPreferences
. Make sure you import all necessary members from the package scalariform.formatter.preferences
. Let's look at an example:
import scalariform.formatter.preferences._
scalariformSettings
ScalariformKeys.preferences := ScalariformKeys.preferences.value
.setPreference(AlignSingleLineCaseStatements, true)
.setPreference(DoubleIndentClassDeclaration, true)
.setPreference(PreserveDanglingCloseParenthesis, true)
If you don't want sbt to automatically format your source files when the tasks compile
or test:compile
, just add defaultScalariformSettings
instead of scalariformSettings
to your build definition.
Other useful configuration options are provided by common sbt setting keys:
includeFilter in format
: Defaults to *.scalaexcludeFilter in format
: Using the default of sbt
Please use the sbt mailing list and prefix the subject with [sbt-scalariform].
Contributions via GitHub pull requests are gladly accepted from their original author. Before we can accept pull requests, you will need to agree to the Typesafe Contributor License Agreement online, using your GitHub account.
This code is open source software licensed under the Apache 2.0 License.