@@ -70,7 +70,7 @@ lazy val warningSuppression = Seq(
7070 " cat=deprecation&origin=chisel3\\ .experimental\\ .IntrinsicModule:s" ,
7171 " cat=deprecation&origin=chisel3\\ .ltl.*:s" ,
7272 " 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"
7474 ).mkString(" ," )
7575)
7676
@@ -125,7 +125,7 @@ lazy val firrtlSettings = Seq(
125125 " -language:implicitConversions" ,
126126 " -Yrangepos" , // required by SemanticDB compiler plugin
127127 " -Xsource:3" ,
128- " -Xsource-features:infer-override" ,
128+ " -Xsource-features:infer-override"
129129 ),
130130 // Always target Java8 for maximum compatibility
131131 javacOptions ++= Seq (" -source" , " 1.8" , " -target" , " 1.8" ),
@@ -317,7 +317,7 @@ lazy val core = (project in file("core"))
317317 " -unchecked" ,
318318 " -Xcheckinit" ,
319319 " -Xlint:infer-any" ,
320- " -Xsource:3" ,
320+ " -Xsource:3"
321321// , "-Xlint:missing-interpolator"
322322 )
323323 )
@@ -343,7 +343,7 @@ lazy val chisel = (project in file("."))
343343 .settings(
344344 // Suppress Scala 3 behavior requiring explicit types on implicit definitions
345345 // 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"
347347 )
348348 .settings(warningSuppression : _* )
349349 .settings(fatalWarningsSettings : _* )
@@ -353,13 +353,12 @@ lazy val chisel = (project in file("."))
353353
354354def addUnipublishDeps (proj : Project )(deps : Project * ): Project = {
355355 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+ )
363362 }
364363}
365364
0 commit comments