We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbcc405 commit 97514bbCopy full SHA for 97514bb
build.sc
@@ -315,6 +315,14 @@ trait Chisel extends CrossSbtModule with HasScala2MacroAnno with HasScala2Plugin
315
def coreModule = core(crossScalaVersion)
316
def pluginModule = plugin()
317
318
+ override def scalacOptions = T {
319
+ if (v.isScala3(crossScalaVersion)) {
320
+ Seq.empty[String]
321
+ } else {
322
+ super.scalacOptions() ++ v.scala2CommonOptions
323
+ }
324
325
+
326
override def moduleDeps = super.moduleDeps ++ Seq(coreModule, svsimModule)
327
328
object test extends SbtModuleTests with TestModule.ScalaTest with ScalafmtModule {
0 commit comments