coc-pyright 1.1.272 → 1.1.280

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 CHANGED
@@ -9,7 +9,7 @@
9
9
  [Pyright](https://github.com/microsoft/pyright) extension for coc.nvim, with additional features:
10
10
 
11
11
  - codeActions to add imports, ignore typing check, run tests and more
12
- - linting with `bandit`, `flake8`, `mypy`, `prospector`, `pycodestyle`, `pydocstyle`, `pylama`, `pylint`, `bandit`, `pytype`
12
+ - linting with `bandit`, `flake8`, `mypy`, `ruff`, `prospector`, `pycodestyle`, `pydocstyle`, `pyflakes`, `pylama`, `pylint`, `pytype`
13
13
  - formatting with `yapf`, `black`, `autopep8`, `darker`, `blackd`
14
14
  - testing with `unittest` or `pytest`, supports codeLens
15
15
  - sort imports with `isort` or `pyright`
@@ -67,12 +67,14 @@ These configurations are used by `coc-pyright`, you need to set them in your `co
67
67
  | python.linting.flake8Enabled | Whether to lint with flake8 | false |
68
68
  | python.linting.banditEnabled | Whether to lint with bandit | false |
69
69
  | python.linting.mypyEnabled | Whether to lint with mypy | false |
70
+ | python.linting.ruffEnabled | Whether to lint with ruff | false |
70
71
  | python.linting.pytypeEnabled | Whether to lint with pytype | false |
71
72
  | python.linting.pycodestyleEnabled | Whether to lint with pycodestyle | false |
72
73
  | python.linting.prospectorEnabled | Whether to lint with prospector | false |
73
- | python.linting.pydocstyleEnabled | Whether to lint with pydocstyleEnabled | false |
74
+ | python.linting.pydocstyleEnabled | Whether to lint with pydocstyle | false |
74
75
  | python.linting.pylamaEnabled | Whether to lint with pylama | false |
75
76
  | python.linting.pylintEnabled | Whether to lint with pylint | false |
77
+ | python.linting.pyflakesEnabled | Whether to lint with pyflakes | false |
76
78
  | python.sortImports.path | Path to isort script, default using inner version | '' |
77
79
  | python.sortImports.args | Arguments passed to isort | [] |
78
80
  | pyright.server | Custom `pyright-langserver` path | '' |
@@ -83,7 +85,6 @@ These configurations are used by `coc-pyright`, you need to set them in your `co
83
85
  | pyright.completion.importSupport | Enable `python-import` completion source support | true |
84
86
  | pyright.completion.snippetSupport | Enable completion snippets support | true |
85
87
  | pyright.organizeimports.provider | Organize imports provider, `pyright` or `isort` | pyright |
86
- | pyright.inlayHints.enable | Enable inlay hints feature | true |
87
88
  | pyright.inlayHints.functionReturnTypes | Enable inlay hints for function return types | true |
88
89
  | pyright.inlayHints.variableTypes | Enable inlay hints for variable types | true |
89
90
  | pyright.testing.provider | Provider for testing, supports `unittest` and `pytest` | unittest |