Another quick question: what is right syntax for p...
# general
g
Another quick question: what is right syntax for pants_ignore.remove? I know we can do pants_ignore.add.
h
Is the default value ignoring something you need?
g
I was using pants_ignore.add =[!xxx] to un-ignore what in gitignore. But that syntax seems wired. So trying to see better ways
h
You might have to set
pants_ignore_use_gitignore = false
and then add back the parts of gitignore that you do want to use
because otherwise .gitignore rules are applied before pants_ignore
g
Thx got you