├── .python-version ├── LICENSE ├── LSP-basedpyright.sublime-commands ├── LSP-basedpyright.sublime-settings ├── Main.sublime-menu ├── README.md ├── boot.py ├── dependencies.json ├── language-server ├── package-lock.json └── package.json ├── messages.json ├── messages ├── 1.1.5.md └── 1.2.0.md ├── overwrites └── extension │ └── dist │ └── typeshed-fallback │ └── stdlib │ └── builtins.pyi ├── plugin ├── __init__.py ├── client.py ├── commands │ ├── __init__.py │ └── lsp_basedpyright_create_configuration.py ├── constants.py ├── dev_environment │ ├── __init__.py │ ├── helpers.py │ ├── impl │ │ ├── __init__.py │ │ ├── blender.py │ │ ├── gdb.py │ │ └── sublime_text.py │ └── interfaces.py ├── log.py ├── template.py ├── utils.py ├── utils_lsp.py └── virtual_env │ ├── __init__.py │ ├── helpers.py │ ├── venv_finder.py │ └── venv_info.py ├── sublime-package.json └── syntaxes ├── Python.sublime-syntax ├── basedpyright.sublime-syntax └── syntax_test_basedpyright.py /.python-version: -------------------------------------------------------------------------------- 1 | 3.8 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/LICENSE -------------------------------------------------------------------------------- /LSP-basedpyright.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/LSP-basedpyright.sublime-commands -------------------------------------------------------------------------------- /LSP-basedpyright.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/LSP-basedpyright.sublime-settings -------------------------------------------------------------------------------- /Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/Main.sublime-menu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/README.md -------------------------------------------------------------------------------- /boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/boot.py -------------------------------------------------------------------------------- /dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/dependencies.json -------------------------------------------------------------------------------- /language-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/language-server/package-lock.json -------------------------------------------------------------------------------- /language-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/language-server/package.json -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/messages.json -------------------------------------------------------------------------------- /messages/1.1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/messages/1.1.5.md -------------------------------------------------------------------------------- /messages/1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/messages/1.2.0.md -------------------------------------------------------------------------------- /overwrites/extension/dist/typeshed-fallback/stdlib/builtins.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/overwrites/extension/dist/typeshed-fallback/stdlib/builtins.pyi -------------------------------------------------------------------------------- /plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/__init__.py -------------------------------------------------------------------------------- /plugin/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/client.py -------------------------------------------------------------------------------- /plugin/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/commands/__init__.py -------------------------------------------------------------------------------- /plugin/commands/lsp_basedpyright_create_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/commands/lsp_basedpyright_create_configuration.py -------------------------------------------------------------------------------- /plugin/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/constants.py -------------------------------------------------------------------------------- /plugin/dev_environment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugin/dev_environment/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/dev_environment/helpers.py -------------------------------------------------------------------------------- /plugin/dev_environment/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/dev_environment/impl/__init__.py -------------------------------------------------------------------------------- /plugin/dev_environment/impl/blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/dev_environment/impl/blender.py -------------------------------------------------------------------------------- /plugin/dev_environment/impl/gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/dev_environment/impl/gdb.py -------------------------------------------------------------------------------- /plugin/dev_environment/impl/sublime_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/dev_environment/impl/sublime_text.py -------------------------------------------------------------------------------- /plugin/dev_environment/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/dev_environment/interfaces.py -------------------------------------------------------------------------------- /plugin/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/log.py -------------------------------------------------------------------------------- /plugin/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/template.py -------------------------------------------------------------------------------- /plugin/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/utils.py -------------------------------------------------------------------------------- /plugin/utils_lsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/utils_lsp.py -------------------------------------------------------------------------------- /plugin/virtual_env/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugin/virtual_env/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/virtual_env/helpers.py -------------------------------------------------------------------------------- /plugin/virtual_env/venv_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/virtual_env/venv_finder.py -------------------------------------------------------------------------------- /plugin/virtual_env/venv_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/plugin/virtual_env/venv_info.py -------------------------------------------------------------------------------- /sublime-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/sublime-package.json -------------------------------------------------------------------------------- /syntaxes/Python.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/syntaxes/Python.sublime-syntax -------------------------------------------------------------------------------- /syntaxes/basedpyright.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/syntaxes/basedpyright.sublime-syntax -------------------------------------------------------------------------------- /syntaxes/syntax_test_basedpyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-basedpyright/HEAD/syntaxes/syntax_test_basedpyright.py --------------------------------------------------------------------------------