2

我在这个主题上发现的所有其他问题都很老了。

我正在使用插件构建一个 scala 项目,sbtscala-style我找不到一种方法来排除我有一些生成代码的特定文件夹。

有没有办法强制插件不检查该特定文件夹?

现在我正在手动编辑文件并添加:

// scalastyle:off

在文件的顶部,但这很烦人。

在官方网站http://www.scalastyle.org/sbt.html我找不到任何文档,尽管似乎实际上可以从中排除路径/文件。

https://github.com/scalastyle/scalastyle/blob/e19b54eacb6502b47b1f84d7b2a6b5d33f3993bc/src/main/scala/org/scalastyle/Main.scala#L51

所以看起来我们实际上可以通过:

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

4

1 回答 1

5

您可以获取“src/main/scala”下的所有文件/目录并过滤掉您的目录:

lazy val root = (project in file(".")).
  settings(
    (scalastyleSources in Compile) := {
      // all .scala files in "src/main/scala"
      val scalaSourceFiles = ((scalaSource in Compile).value ** "*.scala").get    
      val fSep = java.io.File.separator // "/" or "\"
      val dirNameToExclude = "com" + fSep + "folder_to_exclude" // "com/folder_to_exclude"
      scalaSourceFiles.filterNot(_.getAbsolutePath.contains(dirNameToExclude))
    }
  )

编辑
我添加了一个更“通用”的解决方案,它检查每个文件的路径以排除...

于 2017-01-06T16:40:32.767 回答