Is there a way to prevent `pants tailor ::` from a...
# general
g
Is there a way to prevent
pants tailor ::
from adding
poetry_requirements
to BUILD files?
I figured this out with
Copy code
pants list :: | egrep ':poetry$' | sort | sed 's|^|  "|g; s|$|",|g'
and adding that to
Copy code
# pants.toml

[tailor]
ignore_adding_targets = [
  <put-list-here>
]
b
g
In my case I wanted it to add
python_requirements
, but not
poetry_requirements
👍 1