有没有办法在 IntelliJ 下为测试范围指定一个替代的 scalastyle-config.xml?

Is there a way to specify an alternate scalastyle-config.xml under IntelliJ for test scope?

build.sbt 中,您可以使用以下命令为测试范围指定一个替代的 scalastyle 配置文件:

(scalastyleConfig in Test) := baseDirectory.value / "scalastyle-test-config.xml"

当您想放松 Test 范围内的检查时,这很有用。

不幸的是,IntelliJ 会忽略此设置并在其默认位置查找文件。

有办法解决这个问题吗?

这目前是不可能的,位置是硬编码的。我为你创建了一个问题: https://youtrack.jetbrains.com/issue/SCL-12086