Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove follow-imports argument which may conflict with projects (#90)
mypy prioritises values from configuration on its command line over that provided in configuration files. This means that the value previously provided here could override the settings for a project, cause spurious errors and/or hiding true errors. Removing this default value allows users freedom to configure their projects however they like, without the extension injecting unexpected additional configuration within the IDE context. Tested manually by opening a project which has a `setup.cfg` and changing the `follow_imports` value within that file, then checking the errors reported from `mypy` change accordingly. Fixes #89
- Loading branch information