coc-pyright 1.1.305 → 1.1.310
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -3
- package/lib/index.js +23588 -28776
- package/package.json +7 -6
- package/diff.mjs +0 -25
package/README.md
CHANGED
|
@@ -8,13 +8,14 @@
|
|
|
8
8
|
|
|
9
9
|
[Pyright](https://github.com/microsoft/pyright) extension for coc.nvim, with additional features:
|
|
10
10
|
|
|
11
|
+
- semanticTokens highlighting!
|
|
12
|
+
- inlayHints supports
|
|
11
13
|
- codeActions to add imports, ignore typing check, run tests and more
|
|
12
14
|
- linting with `bandit`, `flake8`, `mypy`, `ruff`, `prospector`, `pycodestyle`, `pydocstyle`, `pyflakes`, `pylama`, `pylint`, `pytype`
|
|
13
15
|
- formatting with `yapf`, `black`, `autopep8`, `darker`, `blackd`, `pyink`
|
|
14
16
|
- testing with `unittest` or `pytest`, supports codeLens
|
|
15
|
-
- sort imports with `isort`
|
|
17
|
+
- sort imports with `ruff`, `isort` and `pyright`
|
|
16
18
|
- extract method and variables with `rope`
|
|
17
|
-
- inlayHints supports
|
|
18
19
|
|
|
19
20
|
<!-- markdownlint-disable-next-line -->
|
|
20
21
|
<img width="906" alt="10" src="https://user-images.githubusercontent.com/345274/189342412-c80fc8a9-c3d7-4a8b-bbfc-75e5cbddb9a7.png">
|
|
@@ -86,7 +87,7 @@ These configurations are used by `coc-pyright`, you need to set them in your `co
|
|
|
86
87
|
| pyright.disableProgressNotifications | Disable the initialization and workdone progress notifications | false |
|
|
87
88
|
| pyright.completion.importSupport | Enable `python-import` completion source support | true |
|
|
88
89
|
| pyright.completion.snippetSupport | Enable completion snippets support | true |
|
|
89
|
-
| pyright.organizeimports.provider | Organize imports provider, `pyright` or `isort`
|
|
90
|
+
| pyright.organizeimports.provider | Organize imports provider, `pyright`, `ruff` or `isort` | pyright |
|
|
90
91
|
| pyright.inlayHints.functionReturnTypes | Enable inlay hints for function return types | true |
|
|
91
92
|
| pyright.inlayHints.variableTypes | Enable inlay hints for variable types | true |
|
|
92
93
|
| pyright.testing.provider | Provider for testing, supports `unittest` and `pytest` | unittest |
|