Releases: tomv564/pyls-mypy
Releases · tomv564/pyls-mypy
0.1.8
Fixed readme issue preventing package publish.
0.1.7
Fixes:
- Exclude errors from other files when following imports (pyls only takes errors for the "linted" file)
- Account for mypy column offset change to 1-based (@AmjadHD)
- Use Python-language-server's is_saved flag to only lint when file is saved (when live mode is off)
0.1.6
Fix list object expected
error when invoking api.run in mypy 0.700 (@singulared)
0.1.5
Add live_mode setting, default=true.
By default this plugin sends unsaved file contents via --command "YOUR_FILE_CONTENTS_HERE"
Mypy cannot resolve imports correctly for this content as it doesn't know what package/module it relates to.
By setting live_mode to false, the plugin will send the file path as argument. Unsaved changes will not fix mypy diagnostics, but failures following imports will not cause false diagnostics about missing imports.
0.1.4
Features:
- Highlight entire word
- Add '--follow-imports silent' as default argument
0.1.3
Removes --ignore-missing-imports
from default configuration
0.1.2
Adds manifest to fix installation issues from PyPI
0.1.1
Adds support for mypy output missing line or column.
0.1.0
Initial release: always enabled if found by pyls, hardcodes some settings