I would like to enforce type hinting everywhere in my Python package and configure CI to fail builds in case it's not 100%.
Is there a way for me to report type hint coverage using mypy or any other package in Python similarly to how I can check code coverage with e.g. coverage.py?
Is it also sensible to require a strict 100% of type hint coverage?