Configure Scalariform according to the Scala style guide and provide a couple of handy aliases for reformatting the code.
Add the IntegrationTest config to the project.
Add the IntegrationTest config to the project. The extend(Test)
part makes it so classes in src/it have a classpath dependency on
classes in src/test. This makes it simple to share common test
helper code.
See http://www.scala-sbt.org/release/docs/Testing.html#Custom+test+configuration
Settings added automatically to all projects.
Settings added automatically to all projects.
Core settings used by Mediative sbt projects.
Includes amongst other things:
git-describe
.scalacOptions
.reformat-code
command to format andreformat-code-check
to fail the build if code is not formatting (useful to enforce well-formatted code in CI builds).IntegrationTest
scope to inherit fromTest
scope.This plugin is automatically enabled.