is there a way to not type check (with mypy) some ...
# general
r
is there a way to not type check (with mypy) some files? I tried to add
Copy code
[mypy]
args = ["--exclude", "pattern"]
but it doesn't seem to work, I guess because pants calls mypy on those files directly.
this is a common gotcha - I wonder if it would make sense for us to eagerly detect when
--exclude
is being used and warn?
r
ah yes, I'm still not used to the BUILD files, I stayed stuck looking at the pants.toml. Sorry for the noise!