We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
just --fmt
else if
I noticed, that just --fmt --unstable breaks a else if statement.
just --fmt --unstable
Original statement:
linux_arch := if arch() == "x86_64" { "amd64" } else if arch() == "aarch64" { "arm64" } else { arch() }
Command: just --fmt --unstable -f test.just
just --fmt --unstable -f test.just
Statement after formatting:
linux_arch := if arch() == "x86_64" { "amd64" } else { if arch() == "aarch64" { "arm64" } else { arch() } }
I know that formatting is unstable, but wanted to report this.
The text was updated successfully, but these errors were encountered:
if … else if …
Good catch! Fixed in #2573.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I noticed, that
just --fmt --unstable
breaks aelse if
statement.Original statement:
Command:
just --fmt --unstable -f test.just
Statement after formatting:
I know that formatting is unstable, but wanted to report this.
The text was updated successfully, but these errors were encountered: