Can I do something like `./pants lint --only=pylin...
# general
p
Can I do something like
./pants lint --only=pylint ::
? ie, disable all the backends except for the one I’m debugging. I could edit pants.toml, but it would be nice to have something like that on the command line.
h
@witty-crayon-22786 has proposed this exact syntax. For now, you can do
./pants --black-skip --isort-skip --flake8-skip lint ::
etc
👍 1