You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 0.6.0 the sbt.PluginKeys.scalastyle no longer works, that and scalastyle/scalastyle-sbt-plugin#31 led me to implementing it this way (note the in(Compile) was to get it to read the custom config location);
testScalaStyle := { org.scalastyle.sbt.ScalastylePlugin.scalastyle.in(Compile).toTask("").value },
test in Test<<= (test in Test) dependsOn testScalaStyle,
The text was updated successfully, but these errors were encountered:
In 0.6.0 the sbt.PluginKeys.scalastyle no longer works, that and scalastyle/scalastyle-sbt-plugin#31 led me to implementing it this way (note the
in(Compile)
was to get it to read the custom config location);The text was updated successfully, but these errors were encountered: