summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJim Lawson2020-06-08 14:06:56 -0700
committerGitHub2020-06-08 14:06:56 -0700
commit5271e89c09653fe0d38adf75b5bef1fe5d3539d2 (patch)
tree7342af0ef249a9a812b390c5b2558ecc09082aba /build.sbt
parent99ac8a134b134713913036013ffdec98ec92c73a (diff)
ScalaFix support from #1182 (#1203)
Co-authored-by: Chick Markley <chick@qrhino.com>
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt6
1 files changed, 5 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index 0ad5d8f6..db2c9723 100644
--- a/build.sbt
+++ b/build.sbt
@@ -140,7 +140,7 @@ lazy val core = (project in file("core")).
"-unchecked",
"-Xcheckinit",
"-Xlint:infer-any"
-// "-Xlint:missing-interpolator"
+// , "-Xlint:missing-interpolator"
)
).
dependsOn(macros)
@@ -185,3 +185,7 @@ lazy val chisel = (project in file(".")).
}
)
)
+
+addCommandAlias("com", "all compile")
+addCommandAlias("lint", "; compile:scalafix --check ; test:scalafix --check")
+addCommandAlias("fix", "all compile:scalafix test:scalafix")