io.github.tassiluca.scalaextras.ScalaCompilerOptions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-scala-extras Show documentation
Show all versions of gradle-scala-extras Show documentation
A plugin to enhance the Scala gradle core plugin with quality assurance tools
package io.github.tassiluca.scalaextras
/** A subset of the Scala compiler options needed for the plugin implementation. */
object ScalaCompilerOptions {
/** Scala 3 compiler option to report unused code elements. */
internal const val SCALA3_REPORT_UNUSED = "-Wunused:all"
/** Scala 2/3 compiler option to fail on warnings. */
internal const val FAIL_ON_WARNINGS = "-Werror"
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy