We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'd like to run automatically the scapegoat inspections each time a SBT build is run. I'm trying to this that way as I did the same for scalastyle,
lazy val compileScapegoatTask = taskKey[Unit]("scapegoat") Compile / compile := (Compile / compile) .dependsOn(compileScapegoatTask) .value
But when I run sbt compile it gets stuck , maybe is it causing an infinite loop / cycle in the dependency graph.
Is there a better way to achieve this?
Thanks
The text was updated successfully, but these errors were encountered:
Hi, the infinite loop is likely the same cause as scapegoat-scala/sbt-scapegoat#190 I'm looking to address that problem.
Sorry, something went wrong.
No branches or pull requests
I'd like to run automatically the scapegoat inspections each time a SBT build is run.
I'm trying to this that way as I did the same for scalastyle,
But when I run sbt compile it gets stuck , maybe is it causing an infinite loop / cycle in the dependency graph.
Is there a better way to achieve this?
Thanks
The text was updated successfully, but these errors were encountered: