-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Mima and Rewarn sbt plugins (#43)
* Add Mima and Rewarn sbt plugins * trait DecentScala * disable "DisableSyntax.valInAbstract"
- Loading branch information
1 parent
55b6f77
commit 8555192
Showing
5 changed files
with
82 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,26 @@ | ||
val Dependencies = new { | ||
val Versions = new { | ||
val sbtCiRelease = "1.5.3" | ||
val sbtMima = "0.7.0" | ||
val sbtMissinglink = "0.3.1" | ||
val sbtRewarn = "0.1.0" | ||
val sbtScalafmt = "2.4.2" | ||
val sbtScalafix = "0.9.19" | ||
val sbtTpolecat = "0.1.13" | ||
} | ||
val sbtCiRelease = "com.geirsson" % "sbt-ci-release" % Versions.sbtCiRelease | ||
val sbtMima = "com.typesafe" % "sbt-mima-plugin" % Versions.sbtMima | ||
val sbtMissinglink = "ch.epfl.scala" % "sbt-missinglink" % Versions.sbtMissinglink | ||
val sbtRewarn = "com.timushev.sbt" % "sbt-rewarn" % Versions.sbtRewarn | ||
val sbtScalafmt = "org.scalameta" % "sbt-scalafmt" % Versions.sbtScalafmt | ||
val sbtScalafix = "ch.epfl.scala" % "sbt-scalafix" % Versions.sbtScalafix | ||
val sbtTpolecat = "io.github.davidgregory084" % "sbt-tpolecat" % Versions.sbtTpolecat | ||
} | ||
|
||
addSbtPlugin(Dependencies.sbtCiRelease) | ||
addSbtPlugin(Dependencies.sbtMima) | ||
addSbtPlugin(Dependencies.sbtMissinglink) | ||
addSbtPlugin(Dependencies.sbtRewarn) | ||
addSbtPlugin(Dependencies.sbtScalafmt) | ||
addSbtPlugin(Dependencies.sbtScalafix) | ||
addSbtPlugin(Dependencies.sbtTpolecat) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters