File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
1
+ rules = [
2
+ # DisableSyntax
3
+ # ExplicitResultTypes
4
+ # LeakingImplicitClassVal
5
+ RemoveUnused
6
+ # NoAutoTupling
7
+ # NoValInForComprehension
8
+ # ProcedureSyntax
9
+ ]
10
+
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ lazy val core = (project in file("core")).
140
140
" -unchecked" ,
141
141
" -Xcheckinit" ,
142
142
" -Xlint:infer-any"
143
- // "-Xlint:missing-interpolator"
143
+ // , "-Xlint:missing-interpolator"
144
144
)
145
145
).
146
146
dependsOn(macros)
@@ -185,3 +185,7 @@ lazy val chisel = (project in file(".")).
185
185
}
186
186
)
187
187
)
188
+
189
+ addCommandAlias(" com" , " all compile" )
190
+ addCommandAlias(" lint" , " ; compile:scalafix --check ; test:scalafix --check" )
191
+ addCommandAlias(" fix" , " all compile:scalafix test:scalafix" )
Original file line number Diff line number Diff line change @@ -14,4 +14,6 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0")
14
14
15
15
addSbtPlugin(" com.eed3si9n" % " sbt-unidoc" % " 0.4.3" )
16
16
17
+ addSbtPlugin(" ch.epfl.scala" % " sbt-scalafix" % " 0.9.15" )
18
+
17
19
addSbtPlugin(" com.thoughtworks.sbt-api-mappings" % " sbt-api-mappings" % " 3.0.0" )
You can’t perform that action at this time.
0 commit comments