aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index 33868ab..9155505 100644
--- a/README.md
+++ b/README.md
@@ -12,6 +12,8 @@ Provides common sbt configuration for sbt itself, Scala compiler, testing, linti
### build.sbt
+Do `sbt reload` after adding a plugin and configure a project:
+
lazy val root = (project in file("."))
.settings (name := "Name-Of-Your-Project")
@@ -23,6 +25,10 @@ Provides common sbt configuration for sbt itself, Scala compiler, testing, linti
.packagingConfiguration // Currently packages to zip file as java server app
+ .settings(lintingSettings) // Scala code linting settings, includes `wartRemoverSettings` and `scalastyleSettings`
+
+ .settings(formatSettings) // Standard Scala code formatting
+
.settings(repositoriesSettings) // To use dependencies from Driver jar repository
.settings(publicationSettings) // Publishing to Driver jar repository