You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
493 B

4 years ago
  1. object ScalacOptions {
  2. val flags = Seq(
  3. "-deprecation", // Emit warning and location for usages of deprecated APIs.
  4. "-encoding",
  5. "utf-8", // Specify character encoding used by source files.
  6. "-explaintypes", // Explain type errors in more detail.
  7. "-feature", // Emit warning and location for usages of features that should be imported explicitly.
  8. "-unchecked", // Enable additional warnings where generated code depends on assumptions.
  9. "-Ymacro-annotations"
  10. )
  11. }