@@ -69,7 +69,7 @@ lazy val warningSuppression = Seq(
6969 " cat=deprecation&origin=chisel3\\ .util\\ .experimental\\ .BoringUtils.*:s" ,
7070 " cat=deprecation&origin=chisel3\\ .experimental\\ .IntrinsicModule:s" ,
7171 " cat=deprecation&origin=chisel3\\ .ltl.*:s" ,
72- " cat=deprecation&msg=Looking up Modules is deprecated:s" ,
72+ " cat=deprecation&msg=Looking up Modules is deprecated:s"
7373 ).mkString(" ," )
7474)
7575
@@ -124,7 +124,7 @@ lazy val firrtlSettings = Seq(
124124 " -language:implicitConversions" ,
125125 " -Yrangepos" , // required by SemanticDB compiler plugin
126126 " -Xsource:3" ,
127- " -Xsource-features:infer-override" ,
127+ " -Xsource-features:infer-override"
128128 ),
129129 // Always target Java8 for maximum compatibility
130130 javacOptions ++= Seq (" -source" , " 1.8" , " -target" , " 1.8" ),
@@ -316,7 +316,7 @@ lazy val core = (project in file("core"))
316316 " -unchecked" ,
317317 " -Xcheckinit" ,
318318 " -Xlint:infer-any" ,
319- " -Xsource:3" ,
319+ " -Xsource:3"
320320// , "-Xlint:missing-interpolator"
321321 )
322322 )
@@ -342,7 +342,7 @@ lazy val chisel = (project in file("."))
342342 .settings(
343343 // Suppress Scala 3 behavior requiring explicit types on implicit definitions
344344 // Note this must come before the -Wconf is warningSuppression
345- Test / scalacOptions += " -Wconf:cat=other-implicit-type:s" ,
345+ Test / scalacOptions += " -Wconf:cat=other-implicit-type:s"
346346 )
347347 .settings(warningSuppression : _* )
348348 .settings(fatalWarningsSettings : _* )
@@ -352,13 +352,12 @@ lazy val chisel = (project in file("."))
352352
353353def addUnipublishDeps (proj : Project )(deps : Project * ): Project = {
354354 def inTestScope (module : ModuleID ): Boolean = module.configurations.exists(_ == " test" )
355- deps.foldLeft(proj) {
356- 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- )
355+ deps.foldLeft(proj) { case (p, dep) =>
356+ p.settings(
357+ libraryDependencies ++= (dep / libraryDependencies).value.filterNot(inTestScope),
358+ Compile / packageBin / mappings ++= (dep / Compile / packageBin / mappings).value,
359+ Compile / packageSrc / mappings ++= (dep / Compile / packageSrc / mappings).value
360+ )
362361 }
363362}
364363
0 commit comments