hey folks! i just added a short blurb about the `-...
# general
w
hey folks! i just added a short blurb about the
--loop
flag to the docs. if you’re not using it, i’d highly recommend giving it a try!: https://www.pantsbuild.org/docs/goals#running-goals
👖 2
💯 2
in my workflow, i tend to run
Copy code
./pants --loop test typecheck fmt lint $file
which will continuously
test
and
typecheck
code until both of those have passed, and then
fmt
and
lint
it.
💯 1
a
aha, I was thinking to myself this weekend, "how would you implement this in pants?" Nice work 💯