All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.tassiluca.scalaextras.ScalaCompilerOptions.kt Maven / Gradle / Ivy

There is a newer version: 2.1.6
Show newest version
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