Closed
Description
Feature
I'd like the exclude =
in mypy.ini
to have a saner way to specify a lot of paths that one huge one-line regex.
This is a follow-up to #9992 (comment)
When trying to use exclude
(necessary because mypy 0.800 became much more aggressive in including paths by default) I ended up with something like:
files =
torch,
caffe2,
test/test_bundled_images.py,
test/test_bundled_inputs.py,
test/test_complex.py,
... <many more paths here>
#
# `exclude` is a regex, not a list of paths like `files` (sigh)
#
exclude = torch/include/|torch/csrc/|torch/distributed/elastic/agent/server/api.py
Both the files
and exclude
list are likely to grow over time. I don't have a strong preference on how exclude
should work exactly, any pattern that allows breaking the regex into one line per pattern will be fine. E.g.:
exclude =
pattern1|
pattern2|
pattern3|
Using |
or some character other than a comma to indicate that it does not work like files =
seems like a good idea.