Skip to content

Bug: --fmt strips non-doc comments #2695

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
ndrpnt opened this issue Apr 4, 2025 · 0 comments
Open

Bug: --fmt strips non-doc comments #2695

ndrpnt opened this issue Apr 4, 2025 · 0 comments

Comments

@ndrpnt
Copy link

ndrpnt commented Apr 4, 2025

Running just --fmt strips the comment line immediately preceding a recipe with a doc attribute specified:

$ cat justfile 
# foo
[doc('bar')]
baz:
$ just --fmt --check --unstable
-# foo
 [doc('bar')]
 baz:
error: Formatted justfile differs from original.

Adding a blank line works around the problem, but just should ideally leave comments as-is.

$ cat justfile                 
# foo

[doc('bar')]
baz:
$ just --fmt --check --unstable # ok

Somewhat related to #862.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant