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

Gradle plugin for scalastyle

Results 25 gradle-scalastyle-plugin issues
Sort by recently updated
recently updated
newest added

I was going through https://mvnrepository.com/artifact/org.github.ngbinh.scalastyle/gradle-scalastyle-plugin and did not find any plugin which was published for 2.12. Is there any particular reason for that?

I've got some custom checks implemented I was using in maven with a success, e.g.: ``` ``` It does not work with gradle-scalastyle-plugin. How I can tell the gradle-scalastyle plugin...

When I use the following configuration: ```groovy scalaStyle { configLocation = "scalastyle-config_main.xml" testConfigLocation = "scalastyle-config_test.xml" includeTestSourceDirectory = true source = "src/main/scala" testSource = "src/test/scala" } ``` , the test source...

If I run scalastyle with `quiet true` specific errors do not get reported. If I run scalastyle with `quiet false` specific errors do get reported but the log is spammed...

if I have in code `val l = List(1, 2, 3, )` it will fail on compilatioin error even it is OK on Scala 2.12

`Gradle` allows you to specify multiple working `sourceSets`. It will be ideal if we can take advantage of this functionality for checking `scalaStyle` in more than one `sourceSet`.

Hello, It's a great plugin, but I really miss some of the functionality. For example I have not only `main/scala` and `test/scala` but also `integrationTest/scala` and `gatling/scala` and I can't...

When running the task get this: ``` * What went wrong: Execution failed for task ':scalaStyle'. > Could not initialize class scala.xml.TopScope$ * Try: Run with --info or --debug option...