We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5f340e commit 88965e7Copy full SHA for 88965e7
requirements.txt
@@ -1,5 +1,5 @@
1
python-lsp-server
2
-mypy < 0.920
+mypy
3
black
4
pre-commit
5
rstcheck
test/test_plugin.py
@@ -103,7 +103,9 @@ def foo():
103
104
# Create configuration file for workspace folder 1.
105
mypy_config = folder1.join("mypy.ini")
106
- mypy_config.write("[mypy]\nwarn_unreachable = True")
+ mypy_config.write(
107
+ "[mypy]\nwarn_unreachable = True\ncheck_untyped_defs = True"
108
+ )
109
110
# Initialize settings for both folders.
111
plugin.pylsp_settings(ws1._config)
0 commit comments