admin管理员组文章数量:1351976
Classes, generated by scalaPb plugin,
does't pass scalafmtCheck ans scalaFix stages.
How could I exclude files from some directories, for example, from target and build
I tried to exclude these directories in .scalafix.conf and .scalafmt.conf like so:
triggered.excludeFilters = [
".*/target/.*",
".*/build/.*"
]
But receive an error:
found option 'triggered' which wasn't expected, or isn't valid in this context.
Classes, generated by scalaPb plugin,
does't pass scalafmtCheck ans scalaFix stages.
How could I exclude files from some directories, for example, from target and build
I tried to exclude these directories in .scalafix.conf and .scalafmt.conf like so:
triggered.excludeFilters = [
".*/target/.*",
".*/build/.*"
]
But receive an error:
found option 'triggered' which wasn't expected, or isn't valid in this context.
Share
Improve this question
asked Apr 1 at 19:53
JellyJelly
1,3325 gold badges26 silver badges58 bronze badges
1
|
1 Answer
Reset to default 2From scalafmt - Configuration - Project
Project
project.include/exclude
# Defaults project.includePaths = ["glob:**.scala", "glob:**.sbt", "glob:**.sc", "glob:**.mill"] project.excludePaths = []
Allows specifying PathMatcher selection patterns to identify further which files are to be formatted (explicit glob: or regex: prefixes are required; keep in mind that PathMatcher patterns must match the entire path).
Which means, your .scalafmt.conf
file should have something like
project.excludePaths = [
"glob:**/target/**",
"glob:**/build/**"
]
From scalafix - docs - Exclude files from Scalafix
By default, the
scalafix
task processes all files in a project. If you use Scala 2.x, thescalafix
task also respects-P:semanticdb:exclude
.Use
Compile / scalafix / unmanagedSources
to optionally exclude files from thescalafix
task.Compile / scalafix / unmanagedSources := (Compile / unmanagedSources).value .filterNot(file => file.getName == "Macros.scala")
本文标签: scalaScalafmt how to exclude files in some directoriesStack Overflow
版权声明:本文标题:scala - Scalafmt how to exclude files in some directories - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743875240a2554207.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
scalafmt
andscalafix
should not cause any issue withScalaPB
. If it is possible, share a [minimal reproducible example(stackoverflow/help/minimal-reproducible-example) – Gastón Schabas Commented Apr 1 at 23:25