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
+48-23
Original file line number
Diff line number
Diff line change
@@ -24,29 +24,54 @@ Install into the same virtualenv as python-lsp-server itself.
24
24
Configuration
25
25
-------------
26
26
27
-
``live_mode`` (default is True) provides type checking as you type.
28
-
This writes to a tempfile every time a check is done. Turning off ``live_mode`` means you must save your changes for mypy diagnostics to update correctly.
29
-
30
-
``dmypy`` (default is False) executes via ``dmypy run`` rather than ``mypy``.
31
-
This uses the ``dmypy`` daemon and may dramatically improve the responsiveness of the ``pylsp`` server, however this currently does not work in ``live_mode``. Enabling this disables ``live_mode``, even for conflicting configs.
32
-
33
-
``strict`` (default is False) refers to the ``strict`` option of ``mypy``.
34
-
This option often is too strict to be useful.
35
-
36
-
``overrides`` (default is ``[True]``) specifies a list of alternate or supplemental command-line options.
37
-
This modifies the options passed to ``mypy`` or the mypy-specific ones passed to ``dmypy run``. When present, the special boolean member ``True`` is replaced with the command-line options that would've been passed had ``overrides`` not been specified. Later options take precedence, which allows for replacing or negating individual default options (see ``mypy.main:process_options`` and ``mypy --help | grep inverse``).
38
-
39
-
``dmypy_status_file`` (Default is ``.dmypy.json``) specifies which status file dmypy should use.
40
-
This modifies the ``--status-file`` option passed to ``dmypy`` given ``dmypy`` is active.
41
-
42
-
``config_sub_paths`` (default is ``[]``) specifies sub paths under which the mypy configuration file may be found.
43
-
For each directory searched for the mypy config file, this also searches the sub paths specified here
44
-
45
-
``report_progress`` (default is ``False``) report basic progress to the LSP client.
46
-
With this option, pylsp-mypy will report when mypy is running, given your editor supports LSP progress reporting. For small files this might produce annoying flashing in your editor, especially in with ``live_mode``. For large projects, enabling this can be helpful to assure yourself whether mypy is still running.
47
-
48
-
``exclude`` (default is ``[]``) A list of regular expressions which should be ignored.
49
-
The ``mypy`` runner wil not be invoked when a document path is matched by one of the expressions. Note that this differs from the ``exclude`` directive of a ``mypy`` config which is only used for recursively discovering files when mypy is invoked on a whole directory. For both windows or unix platforms you should use forward slashes (``/``) to indicate paths.
27
+
.. list-table:: Configuration
28
+
:header-rows: 1
29
+
30
+
* - ``pyproject.toml`` key
31
+
- LSP Configuration Key
32
+
- Type
33
+
- Description
34
+
- Default
35
+
* - ``live_mode``
36
+
- ``pylsp.plugins.pylsp_mypy.live_mode``
37
+
- ``boolean``
38
+
- **Provides type checking as you type**. This writes to a tempfile every time a check is done. Turning off ``live_mode`` means you must save your changes for mypy diagnostics to update correctly.
39
+
- true
40
+
** - ``dmypy``
41
+
- ``pylsp.plugins.pylsp_mypy.dmypy``
42
+
- ``boolean``
43
+
- **Executes via ``dmypy run`` rather than ``mypy``**. This uses the ``dmypy`` daemon and may dramatically improve the responsiveness of the ``pylsp`` server, however this currently does not work in ``live_mode``. Enabling this disables ``live_mode``, even for conflicting configs.
44
+
- false
45
+
* - ``strict``
46
+
- ``pylsp.plugins.pylsp_mypy.strict``
47
+
- ``boolean``
48
+
- **Refers to the ``strict`` option of ``mypy``**. This option often is too strict to be useful.
49
+
- false
50
+
* - ``overrides``
51
+
- ``pylsp.plugins.pylsp_mypy.overrides``
52
+
- ``array`` of (``string`` items or ``true``)
53
+
- **A list of alternate or supplemental command-line options**. This modifies the options passed to ``mypy`` or the mypy-specific ones passed to ``dmypy run``. When present, the special boolean member ``true`` is replaced with the command-line options that would've been passed had ``overrides`` not been specified.
54
+
- ``[true]``
55
+
* - ``dmypy_status_file``
56
+
- ``pylsp.plugins.pylsp_mypy.dmypy_status_file``
57
+
- ``string``
58
+
- **Specifies which status file dmypy should use**. This modifies the ``--status-file`` option passed to ``dmypy`` given ``dmypy`` is active.
59
+
- ``.dmypy.json``
60
+
* - ``config_sub_paths``
61
+
- ``pylsp.plugins.pylsp_mypy.config_sub_paths``
62
+
- ``array`` of ``string`` items
63
+
- **Specifies sub paths under which the mypy configuration file may be found**. For each directory searched for the mypy config file, this also searches the sub paths specified here.
64
+
- ``[]``
65
+
* - ``report_progress``
66
+
- ``pylsp.plugins.pylsp_mypy.report_progress``
67
+
- ``boolean``
68
+
- **Report basic progress to the LSP client**. With this option, pylsp-mypy will report when mypy is running, given your editor supports LSP progress reporting. For small files this might produce annoying flashing in your editor, especially in ``live_mode``. For large projects, enabling this can be helpful to assure yourself whether mypy is still running.
69
+
- false
70
+
* - ``exclude``
71
+
- ``pylsp.plugins.pylsp_mypy.exclude``
72
+
- ``array`` of ``string`` items
73
+
- **A list of regular expressions which should be ignored**. The ``mypy`` runner wil not be invoked when a document path is matched by one of the expressions. Note that this differs from the ``exclude`` directive of a ``mypy`` config which is only used for recursively discovering files when mypy is invoked on a whole directory. For both windows or unix platforms you should use forward slashes (``/``) to indicate paths.
74
+
- ``[]``
50
75
51
76
This project supports the use of ``pyproject.toml`` for configuration. It is in fact the preferred way. Using that your configuration could look like this:
0 commit comments