You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -120,6 +120,21 @@ With ``report_progress`` your config could look like this:
120
120
"report_progress": True
121
121
}
122
122
123
+
Configuration via LSP (see `python-lsp-server's configuration`_ documentation) is also supported with options taking the ``pylsp.plugins.pylsp_mypy`` prefix. For example using ``neovim``:
124
+
125
+
::
126
+
127
+
pylsp = {
128
+
plugins = {
129
+
pylsp_mypy = {
130
+
enabled = true,
131
+
live_mode = false,
132
+
dmypy = true,
133
+
strict = false,
134
+
},
135
+
}
136
+
}
137
+
123
138
Developing
124
139
-------------
125
140
@@ -148,4 +163,5 @@ After that pre-commit will run `all defined hooks`_ on every ``git commit`` and
0 commit comments