scalastyle中多行案例类的缩进级别

时间:2016-11-07 14:45:25

标签: scala scalastyle

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

运行它

0 个答案:

没有答案