Originally created by @stackoverflow on GitHub (Feb 4, 2025).
Pkl requires that object members are separated by white space, semicolons or newlines, but this check is not working for spread syntax.
foo {
1 2 3...IntSeq(4, 10)...IntSeq(11, 20)
}
This should fail with:
–– Pkl Error ––
Object members must be separated by whitespace, newline, or semicolon.
Originally created by @stackoverflow on GitHub (Feb 4, 2025).
Pkl requires that object members are separated by white space, semicolons or newlines, but this check is not working for spread syntax.
```pkl
foo {
1 2 3...IntSeq(4, 10)...IntSeq(11, 20)
}
```
This should fail with:
```bash
–– Pkl Error ––
Object members must be separated by whitespace, newline, or semicolon.
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @stackoverflow on GitHub (Feb 4, 2025).
Pkl requires that object members are separated by white space, semicolons or newlines, but this check is not working for spread syntax.
This should fail with: