@@ -70,7 +70,7 @@ lazy val warningSuppression = Seq(
70
70
" cat=deprecation&origin=chisel3\\ .experimental\\ .IntrinsicModule:s" ,
71
71
" cat=deprecation&origin=chisel3\\ .ltl.*:s" ,
72
72
" cat=deprecation&origin=chisel3\\ .InstanceId:s" ,
73
- " cat=deprecation&msg=Looking up Modules is deprecated:s" ,
73
+ " cat=deprecation&msg=Looking up Modules is deprecated:s"
74
74
).mkString(" ," )
75
75
)
76
76
@@ -125,7 +125,7 @@ lazy val firrtlSettings = Seq(
125
125
" -language:implicitConversions" ,
126
126
" -Yrangepos" , // required by SemanticDB compiler plugin
127
127
" -Xsource:3" ,
128
- " -Xsource-features:infer-override" ,
128
+ " -Xsource-features:infer-override"
129
129
),
130
130
// Always target Java8 for maximum compatibility
131
131
javacOptions ++= Seq (" -source" , " 1.8" , " -target" , " 1.8" ),
@@ -317,7 +317,7 @@ lazy val core = (project in file("core"))
317
317
" -unchecked" ,
318
318
" -Xcheckinit" ,
319
319
" -Xlint:infer-any" ,
320
- " -Xsource:3" ,
320
+ " -Xsource:3"
321
321
// , "-Xlint:missing-interpolator"
322
322
)
323
323
)
@@ -343,7 +343,7 @@ lazy val chisel = (project in file("."))
343
343
.settings(
344
344
// Suppress Scala 3 behavior requiring explicit types on implicit definitions
345
345
// Note this must come before the -Wconf is warningSuppression
346
- Test / scalacOptions += " -Wconf:cat=other-implicit-type:s" ,
346
+ Test / scalacOptions += " -Wconf:cat=other-implicit-type:s"
347
347
)
348
348
.settings(warningSuppression : _* )
349
349
.settings(fatalWarningsSettings : _* )
@@ -353,13 +353,12 @@ lazy val chisel = (project in file("."))
353
353
354
354
def addUnipublishDeps (proj : Project )(deps : Project * ): Project = {
355
355
def inTestScope (module : ModuleID ): Boolean = module.configurations.exists(_ == " test" )
356
- deps.foldLeft(proj) {
357
- case (p, dep) =>
358
- p.settings(
359
- libraryDependencies ++= (dep / libraryDependencies).value.filterNot(inTestScope),
360
- Compile / packageBin / mappings ++= (dep / Compile / packageBin / mappings).value,
361
- Compile / packageSrc / mappings ++= (dep / Compile / packageSrc / mappings).value
362
- )
356
+ deps.foldLeft(proj) { case (p, dep) =>
357
+ p.settings(
358
+ libraryDependencies ++= (dep / libraryDependencies).value.filterNot(inTestScope),
359
+ Compile / packageBin / mappings ++= (dep / Compile / packageBin / mappings).value,
360
+ Compile / packageSrc / mappings ++= (dep / Compile / packageSrc / mappings).value
361
+ )
363
362
}
364
363
}
365
364
0 commit comments