sbt-scapegoat
sbt-scapegoat copied to clipboard
sbt plugin for scapegoat scala static analysis plugin
Updates [org.scala-sbt:sbt](https://github.com/sbt/sbt) from 1.5.8 to 1.7.3. [GitHub Release Notes](https://github.com/sbt/sbt/releases/tag/v1.7.3) - [Version Diff](https://github.com/sbt/sbt/compare/v1.5.8...v1.7.3) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...
Updates [com.github.sbt:sbt-pgp](https://github.com/sbt/sbt-pgp) from 2.1.2 to 2.2.0. [GitHub Release Notes](https://github.com/sbt/sbt-pgp/releases/tag/v2.2.0) - [Version Diff](https://github.com/sbt/sbt-pgp/compare/v2.1.2...v2.2.0) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...
I have the following contents in a java file in my java sources `src/main/com/acme/ScalaOptionValueExtractor.java` ```java package com.acme; import javax.validation.valueextraction.ExtractedValue; import javax.validation.valueextraction.ValueExtractor; public class ScalaOptionValueExtractor implements ValueExtractor { @Override public void...
For the moment, I do not know how to run Scapegoat on test sources.
Hi, Is there any way to do NOT fail if an error is found while scapegoat task is executed? Since I have to upload the scapegoat-report to sonar, wouldn't be...
i am trying to use scapegoat in scala 2.13.1 i have added sbt-scapegoat plugin in project/plugin.sbt `addSbtPlugin("com.sksamuel.scapegoat" %% "sbt-scapegoat" % "1.1.0") ` here is my build.sbt ``` lazy val scala212...
[scapegoat-scalastyle.txt](https://github.com/sksamuel/sbt-scapegoat/files/32942/scapegoat-scalastyle.txt) In the report, all slashes are replaced by dots. So I can not get the reference of the file in my continuous integration server Example : C:.Program Files.Jenkins.jobs.backofficeapi.RouteService.scala instead...
The main scapegoat page says: >For instructions on suppressing warnings by file, by inspection or **by line** see the sbt-scapegoat README. However, there's no explanation there about how to suppress...
I set the scapegoatMaxErrors value to 1 in my build.sbt to fail the build if there are any errors. I have 5 errors but still the build succeeds. ThisBuild /...
Currently the `scalac-scapegoat-plugin_$scalaVersion` dependency is added to the built-in `provided` configuration. That means the dependency leaks into the `pom.xml` of any project that uses sbt-scapegoat: ``` com.sksamuel.scapegoat scalac-scapegoat-plugin_2.13.1 1.4.1 provided...