You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Slightly improve quoting style clarity in justfile
This makes two small changes to the style in which quoting is
expressed in the `justfile`:
- Outside of commands run by a shell (i.e. when `just` interprets
the quotes), prefer single quotes over double quotes when there
is both no intent for `\`-escape interpretation to occur and no
other reason to use `"` (such as a literal `'`).
- Inside commands run by a shel (i.e. when the quoting is shell
syntax rather than `just` syntax), omit double quotes around a
few literal arguments that contain no `$` nor other characters
the shell treats specially. They are alredy omitted in most
commands similar to these.
0 commit comments