Code Monkey home page Code Monkey logo

Comments (3)

DavidGregory084 avatar DavidGregory084 commented on August 11, 2024

@timbertson-zd I would definitely welcome a PR for that! 👍 You may also be interested in the discussion on #10 as we talked a little bit about adding a "development mode" and "release mode" concept to the plugin?

from sbt-tpolecat.

timbertson-zd avatar timbertson-zd commented on August 11, 2024

Thanks. I had a crack at it, but honestly anything I thought up felt kind of awkward. I've decided to just be a little more opinionated in sbt-strict-scope, to automatically filter out any options that are enabled in strict mode:

https://github.com/timbertson/sbt-strict-scope/blob/94cae04944e62372a58af802b08cd160f5c2b418/src/main/scala/net/gfxmonk/sbt/StrictScope.scala#L28-L29

Honestly I don't understand enough SBT to know if this is reliable, though it did seem to work in my testing. I've asked on SO in case anyone knows: https://stackoverflow.com/questions/63532441/how-to-determine-control-the-order-of-operations-when-modifying-sbt-taskkey-se

I think if I did make a sbt-strict-scope-tpolecat which was the same plugin but also depended on this one, that would probably force the ordering I want. As long as "settings application order" follows "plugin initializaion order" 🤞 . But who knows 🤷

from sbt-tpolecat.

atais avatar atais commented on August 11, 2024

I often use an Autoplugin

import sbt.*
import sbt.Keys.*

object NoFatalWarningsPlugin extends AutoPlugin {
  override def trigger = allRequirements

  override lazy val projectSettings: Seq[Setting[?]] = Seq(
    scalacOptions --= {
      if (!sys.env.contains("CI"))
        Seq("-Xfatal-warnings", "-Ywarn-unused", "-Ywarn-unused-import")
      else
        Seq.empty
    }
  )
}

or simply common setting for modules

val scalacLocally: Seq[Def.Setting[_]] = {
  if (!sys.env.contains("CI")) {
    Seq(scalacOptions -= "-Xfatal-warnings")
  } else {
    Seq()
  }
}

from sbt-tpolecat.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.