我在这个主题上发现的所有其他问题都很老了。
我正在使用插件构建一个 scala 项目,sbt
但scala-style
我找不到一种方法来排除我有一些生成代码的特定文件夹。
有没有办法强制插件不检查该特定文件夹?
现在我正在手动编辑文件并添加:
// scalastyle:off
在文件的顶部,但这很烦人。
在官方网站http://www.scalastyle.org/sbt.html我找不到任何文档,尽管似乎实际上可以从中排除路径/文件。
所以看起来我们实际上可以通过:
println(" -x, --excludedFiles STRING regular expressions to exclude file paths (delimited by semicolons)")
在我的build.sbt
电话中:
lazy val compileScalastyle = taskKey[Unit]("compileScalastyle")
compileScalastyle := org.scalastyle.sbt.ScalastylePlugin.scalastyle.in(Compile).toTask("").value
(compile in Compile) <<= (compile in Compile) dependsOn compileScalastyle
有没有办法实现这一点sbt plugin
?