使用 scala 格式,如何从 playframework 中排除视图文件
Using scala format, how to exclude view files from playframework
我的 .scalafmt.conf
文件有以下内容:
project.excludeFilters = [
"glob:**.html"
]
当我编辑 playframework twirl 视图文件时,它会格式化文件并搞砸格式并导致问题,例如在 @
之后放置一个 space 并破坏模板代码。
为什么排除过滤器不起作用?
我也试过这样排除路径:
excludePaths = [
"glob:**/play-web/app/views/**.scala.html"
]
我做错了什么?
我也在使用 VS Code。
我的项目布局是(多项目sbt):
project/
commons-lib/
play-web/
.scalafmt.conf
build.sbt
由于 scala 格式默认为特定文件格式,如 .scala、.sbt 和 .sc,因此它实际上不会格式化 .scala.html 文件。
这最终成为 .html 文件的 VS 代码自动格式化问题。
我通过以下方式禁用了它:
"html.format.enable": false,
我的 .scalafmt.conf
文件有以下内容:
project.excludeFilters = [
"glob:**.html"
]
当我编辑 playframework twirl 视图文件时,它会格式化文件并搞砸格式并导致问题,例如在 @
之后放置一个 space 并破坏模板代码。
为什么排除过滤器不起作用?
我也试过这样排除路径:
excludePaths = [
"glob:**/play-web/app/views/**.scala.html"
]
我做错了什么?
我也在使用 VS Code。
我的项目布局是(多项目sbt):
project/
commons-lib/
play-web/
.scalafmt.conf
build.sbt
由于 scala 格式默认为特定文件格式,如 .scala、.sbt 和 .sc,因此它实际上不会格式化 .scala.html 文件。
这最终成为 .html 文件的 VS 代码自动格式化问题。
我通过以下方式禁用了它:
"html.format.enable": false,