Replies: 1 comment
|
Try this: |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I have the following
justfilefor formatting and linting my code:So when I call
just styleit will execute the following, which is exactly what I want:When I call it with the flag
just style --fix, this is what gets executed:As you can see, for the first dependent recipe, the flag was applied as
--fix, but I wanted it to be--writeinstead. So this is what I wanted:As I am new to using
justit is possible that I am using a completely wrong approach. I would be really grateful for some ideas.All reactions