Hmm another thing with black. I can run `black --...
# general
p
Hmm another thing with black. I can run
black --extend-exclude=blah/.* blah/
and nothing is formatted. If I add the arg
Copy code
[black]
args = ["--extend-exclude=blah/.*"]
It tries to format blah 😕
b
__defaults__
can allow you to set it for a whole directory https://www.pantsbuild.org/docs/targets#field-default-values
p
Thank you