Originally created by @bioball on GitHub (Jul 16, 2025).
The shebang comment should only be valid to start a file, but currently is accepted in any position.
This is okay:
#!/usr/bin/env pkl eval
foo = 1
This should error:
foo = 1
#!/usr/bin/env pkl eval
Originally created by @bioball on GitHub (Jul 16, 2025).
The shebang comment should only be valid to start a file, but currently is accepted in any position.
This is okay:
```pkl
#!/usr/bin/env pkl eval
foo = 1
```
This should error:
```pkl
foo = 1
#!/usr/bin/env pkl eval
```
adam
added the bug label 2025-12-30 01:23:31 +01:00
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 @bioball on GitHub (Jul 16, 2025).
The shebang comment should only be valid to start a file, but currently is accepted in any position.
This is okay:
This should error: