Is there a way to get pants to ignore .swp files (...
# general
p
Is there a way to get pants to ignore .swp files (or any other temp files created by vim)? I open a file to read it while pants is going (say running
./pants test ::
, and it detects a "change" and restarts the rule.
h
Either add to gitignore file or add to
pants_ignore
under GLOBAL in pants.toml using gitignore syntax
👍 1