你如何评论 .sbt 文件中的一行
How do you comment a line in .sbt file
这听起来像是一个愚蠢的问题,但我一直在整个互联网上搜索如何在 sbt 文件中注释行。有人知道怎么做吗?
//
创建评论。
比较好找。
编辑:sbt 构建文件使用 Scala 语法,并在其之上添加了一些 DSL。作为 per documentation:
Each Setting is defined with a Scala expression. The expressions in
settings are independent of one another, and they are expressions,
rather than complete Scala statements.
因此,如果您想知道例如 lazy val root
是什么意思,您应该搜索 Scala 文档 (or SO) 来寻找答案。
另一方面,许多 "operators"(如 +=、:=)是 sbt 的 DSL 的一部分——它们只是在 settings section.
中某种程度上解释的方法
这听起来像是一个愚蠢的问题,但我一直在整个互联网上搜索如何在 sbt 文件中注释行。有人知道怎么做吗?
//
创建评论。
比较好找。
编辑:sbt 构建文件使用 Scala 语法,并在其之上添加了一些 DSL。作为 per documentation:
Each Setting is defined with a Scala expression. The expressions in settings are independent of one another, and they are expressions, rather than complete Scala statements.
因此,如果您想知道例如 lazy val root
是什么意思,您应该搜索 Scala 文档 (or SO) 来寻找答案。
另一方面,许多 "operators"(如 +=、:=)是 sbt 的 DSL 的一部分——它们只是在 settings section.
中某种程度上解释的方法