Skip to content

Releases: tomv564/pyls-mypy

0.1.8

05 Oct 22:18
Compare
Choose a tag to compare

Fixed readme issue preventing package publish.

0.1.7

05 Oct 21:57
Compare
Choose a tag to compare

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

16 Apr 21:12
e488270
Compare
Choose a tag to compare

Fix list object expected error when invoking api.run in mypy 0.700 (@singulared)

0.1.5

29 Oct 23:53
Compare
Choose a tag to compare

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

29 Oct 21:17
Compare
Choose a tag to compare

Features:

  • Highlight entire word
  • Add '--follow-imports silent' as default argument

0.1.3

10 Jun 20:56
Compare
Choose a tag to compare

Removes --ignore-missing-imports from default configuration

0.1.2

13 Aug 09:21
Compare
Choose a tag to compare

Adds manifest to fix installation issues from PyPI

0.1.1

08 Aug 18:07
Compare
Choose a tag to compare

Adds support for mypy output missing line or column.

0.1.0

08 Aug 17:04
Compare
Choose a tag to compare

Initial release: always enabled if found by pyls, hardcodes some settings