scalastyle-sbt-plugin icon indicating copy to clipboard operation
scalastyle-sbt-plugin copied to clipboard

scalastyle-sbt-plugin

Results 17 scalastyle-sbt-plugin issues
Sort by recently updated
recently updated
newest added

Not sure if I just don't understand how to transfer that setting down through sbt (like q or w) but I couldn't get it to work; had to resort to...

enhancement

There are `quiet` and `silent` args (for instance see this PR: https://github.com/scalastyle/scalastyle-sbt-plugin/pull/46 ) but it is difficult to see how to configure them anywhere. Please advise and maybe add to...

The integration tests in our project are in the `/src/it` folder and the unit tests in `src/test`. Although `sbt test:scalastyle` works fine and checks all the files in `src/test`, the...

The example given in http://www.scalastyle.org/sbt.html ``` compileScalastyle := org.scalastyle.sbt.ScalastylePlugin.scalastyle.in(Compile).toTask("").value ``` no longer works because all the keys are now in the `autoImport` object. Is there a reason for the change?...

In theory, files could be excluded using following construct: ` scalastyleSources := scalastyleSources in dao.value .map(PathFinder.apply _) .reduceLeft[PathFinder]((a, b) => a +++ b) .**("*") .filter( ! _.getAbsolutePath.contains("src/main/scala/my/generated/metadata")).get ` but -...

I want to invoke scalastyle before the testing actually begins. I started with this ```scala def styleCheck = streams.map(s => Tasks.doScalastyle()) (test in Test)

This is not a big issue, but it seems file is now generated N times, when you have sub-modules in your project: ``` > scalastyleGenerateConfig [success] created: C:\Users\Jerzy\Documents\GitHub\unicorn\scalastyle-config.xml [success] created:...

bug