0

Scalastyle 将所有拆分为多行的案例类的第一个参数的缩进标记为错误。

case class Theme(
  id: String,  <-- "Use correct indentation"
  name: String,
  start: Long
)

这是我的scalastyle_config.xml

<scalastyle>
    <name>Scalastyle standard configuration</name>
    <check enabled="true" class="org.scalastyle.file.IndentationChecker" level="warning"/>
</scalastyle>

是否可以将其设置为不标记为故障?我摆弄了这些参数但没有成功:

 <parameter name="tabSize">2</parameter>
 <parameter name="methodParamIndentSize">2</parameter>

我使用 0.8.0 版的 SBT 插件并运行它sbt scalastyle

4

0 回答 0