typing_copilot
typing_copilot copied to clipboard
Helper for starting to type-hint large codebases with mypy.
currently the LAX_BASELINE_MYPY_CONFIG doesn't include any plugins, it would be useful if we could load the plugins set in the mypi.ini or pass them to `typing-copilot` ``` example_project/polls/models.py:204: error: Need...
If you're supposed to run the copilot in the parent directory but run it any number of levels in, you'll see a message along the lines of: ``` AssertionError: Unexpected...
`typing_copilot` requires that the package being analyzed is installed in the virtualenv from where its command is invoked. However, this requirement is easy to miss, and if missed, will result...
Example duplicates with identical module names: ``` WARNING: mypy was not able to find type hints for module 'pytest' since it does not seem to be installed in the current...
It's possible to get `typing_copilot` to generate `mypy.ini` files including lines like this: ``` [mypy-schematics.types.*] ignore_missing_imports = True ``` This can make for overly verbose `mypy.ini` files, if multiple submodule...