├── .github ├── ISSUE_TEMPLATE │ └── issue.md ├── dependabot.yml └── workflows │ ├── ci.yml │ └── codeql-analysis.yml ├── .gitignore ├── .npmignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── biome.json ├── diff.mjs ├── esbuild.mjs ├── justfile ├── package.json ├── pythonFiles └── refactor.py ├── src ├── async.ts ├── commands.ts ├── configSettings.ts ├── features │ ├── codeAction.ts │ ├── formatters │ │ ├── autopep8.ts │ │ ├── baseFormatter.ts │ │ ├── black.ts │ │ ├── blackd.ts │ │ ├── darker.ts │ │ ├── pyink.ts │ │ ├── ruff.ts │ │ └── yapf.ts │ ├── formatting.ts │ ├── importCompletion.ts │ ├── inlayHints.ts │ ├── linters │ │ ├── bandit.ts │ │ ├── baseLinter.ts │ │ ├── flake8.ts │ │ ├── linterInfo.ts │ │ ├── lintingEngine.ts │ │ ├── mypy.ts │ │ ├── prospector.ts │ │ ├── pycodestyle.ts │ │ ├── pydocstyle.ts │ │ ├── pyflakes.ts │ │ ├── pylama.ts │ │ ├── pylint.ts │ │ ├── pytype.ts │ │ └── ruff.ts │ ├── lintting.ts │ ├── refactor.ts │ ├── semanticTokens.ts │ ├── sortImports.ts │ └── testing.ts ├── index.ts ├── middleware.ts ├── parsers │ ├── index.ts │ ├── inlayHints.ts │ ├── semanticTokens.ts │ └── testFramework.ts ├── processService.ts ├── systemVariables.ts ├── types.ts └── utils.ts └── tsconfig.json /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/.npmignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/.watchmanconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/biome.json -------------------------------------------------------------------------------- /diff.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/diff.mjs -------------------------------------------------------------------------------- /esbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/esbuild.mjs -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/justfile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/package.json -------------------------------------------------------------------------------- /pythonFiles/refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/pythonFiles/refactor.py -------------------------------------------------------------------------------- /src/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/async.ts -------------------------------------------------------------------------------- /src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/commands.ts -------------------------------------------------------------------------------- /src/configSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/configSettings.ts -------------------------------------------------------------------------------- /src/features/codeAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/codeAction.ts -------------------------------------------------------------------------------- /src/features/formatters/autopep8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/formatters/autopep8.ts -------------------------------------------------------------------------------- /src/features/formatters/baseFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/formatters/baseFormatter.ts -------------------------------------------------------------------------------- /src/features/formatters/black.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/formatters/black.ts -------------------------------------------------------------------------------- /src/features/formatters/blackd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/formatters/blackd.ts -------------------------------------------------------------------------------- /src/features/formatters/darker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/formatters/darker.ts -------------------------------------------------------------------------------- /src/features/formatters/pyink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/formatters/pyink.ts -------------------------------------------------------------------------------- /src/features/formatters/ruff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/formatters/ruff.ts -------------------------------------------------------------------------------- /src/features/formatters/yapf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/formatters/yapf.ts -------------------------------------------------------------------------------- /src/features/formatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/formatting.ts -------------------------------------------------------------------------------- /src/features/importCompletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/importCompletion.ts -------------------------------------------------------------------------------- /src/features/inlayHints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/inlayHints.ts -------------------------------------------------------------------------------- /src/features/linters/bandit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/bandit.ts -------------------------------------------------------------------------------- /src/features/linters/baseLinter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/baseLinter.ts -------------------------------------------------------------------------------- /src/features/linters/flake8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/flake8.ts -------------------------------------------------------------------------------- /src/features/linters/linterInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/linterInfo.ts -------------------------------------------------------------------------------- /src/features/linters/lintingEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/lintingEngine.ts -------------------------------------------------------------------------------- /src/features/linters/mypy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/mypy.ts -------------------------------------------------------------------------------- /src/features/linters/prospector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/prospector.ts -------------------------------------------------------------------------------- /src/features/linters/pycodestyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/pycodestyle.ts -------------------------------------------------------------------------------- /src/features/linters/pydocstyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/pydocstyle.ts -------------------------------------------------------------------------------- /src/features/linters/pyflakes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/pyflakes.ts -------------------------------------------------------------------------------- /src/features/linters/pylama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/pylama.ts -------------------------------------------------------------------------------- /src/features/linters/pylint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/pylint.ts -------------------------------------------------------------------------------- /src/features/linters/pytype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/pytype.ts -------------------------------------------------------------------------------- /src/features/linters/ruff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/linters/ruff.ts -------------------------------------------------------------------------------- /src/features/lintting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/lintting.ts -------------------------------------------------------------------------------- /src/features/refactor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/refactor.ts -------------------------------------------------------------------------------- /src/features/semanticTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/semanticTokens.ts -------------------------------------------------------------------------------- /src/features/sortImports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/sortImports.ts -------------------------------------------------------------------------------- /src/features/testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/features/testing.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/parsers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/parsers/index.ts -------------------------------------------------------------------------------- /src/parsers/inlayHints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/parsers/inlayHints.ts -------------------------------------------------------------------------------- /src/parsers/semanticTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/parsers/semanticTokens.ts -------------------------------------------------------------------------------- /src/parsers/testFramework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/parsers/testFramework.ts -------------------------------------------------------------------------------- /src/processService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/processService.ts -------------------------------------------------------------------------------- /src/systemVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/systemVariables.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-pyright/HEAD/tsconfig.json --------------------------------------------------------------------------------