How can I set up multiple tool lockfiles that diff...
# general
f
How can I set up multiple tool lockfiles that differ for different python “resolves”?
the use case is I have different projects with different (incompatible) mypy configs
w
that is not supported currently, unfortunately...
the best that you could do currently would be using a “subset” of config across all projects, and using
skip_mypy
to skip checks on some targets
f
My use-case is that some projects are further along in the gradual typing adoption, supporting e.g.
no_implicit_optional = true
and others do not. Sounds like we’d either need to use the “lowest” settings or skip on some projects
Thanks for the quick response!
w
that or a whole bunch of
# type: ignore[something]
comments…?
f
oh good find! I’ll look into that 🙏