Hi, is there a way to progressively adopt mypy wit...
# general
m
Hi, is there a way to progressively adopt mypy with pants without having to add`skip_mypy=True` in all of the BUILD files for certain subprojects?
I think this can be resolved with the
__defaults__
field if I understand correctly: https://www.pantsbuild.org/docs/targets#field-default-values
g
Was about to to post that, yeah. That is the best mechanism for this kind of problem that I know of.
m
Thanks @gorgeous-winter-99296!