gpt4 book ai didi

scala - 如何启用scala linter?

转载 作者:行者123 更新时间:2023-12-05 00:54:51 25 4
gpt4 key购买 nike

我将 build.sbt 添加为 directed :

addCompilerPlugin("org.psywerx.hairyfotr" %% "linter" % "0.1.14")

怎么办?我可以像往常一样编译我的项目,但看不到 linter 的任何输出。我需要运行一个特殊的 sbt 任务吗?

最佳答案

来自他们的 documentation :

terminal:
scalac -Xplugin:<path-to-linter-jar>.jar ...

sbt: (in build.sbt)
scalacOptions += "-Xplugin:<path-to-linter-jar>.jar"

maven: (in pom.xml inside scala-maven-plugin configuration)
<configuration>
<args>
<arg>-Xplugin:<path-to-linter-jar>.jar</arg>
</args>
</configuration>

但是,对我来说,它只需像您所做的那样添加编译器插件即可。一种简单的测试方法是将这样的方法放在某处:
def f(a: Int) = 10

您应该会收到如下所示的警告:
Parameter a is not used in method f.
[warn] def f(a: Int) = 10
[warn] ^

关于scala - 如何启用scala linter?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39129242/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com