refactor: allow binPack Strings

This commit is contained in:
Gleb Koval 2025-02-01 02:21:31 +00:00
parent 302fecc91b
commit 4754858094
Signed by: cyclane
GPG Key ID: 15E168A8B332382C
2 changed files with 5 additions and 0 deletions

View File

@ -1,2 +1,4 @@
version = 3.8.6
runner.dialect = scala3
binPack.literalsExclude = []

View File

@ -42,6 +42,8 @@ class ParallelExamplesSpec
def fileIsDissallowed(filename: String): Boolean =
Seq(
// format: off
// disable formatting to avoid binPack
"wacc-examples/valid/advanced",
"wacc-examples/valid/array",
"wacc-examples/valid/basic/exit",
@ -88,5 +90,6 @@ class ParallelExamplesSpec
"wacc-examples/invalid/semanticErr/while",
// invalid (whack)
"wacc-examples/invalid/whack"
// format: on
).find(filename.contains).isDefined
}