{"id":15439045,"url":"https://github.com/yaegassy/coc-mypy","last_synced_at":"2025-10-27T17:05:32.196Z","repository":{"id":176735803,"uuid":"658440779","full_name":"yaegassy/coc-mypy","owner":"yaegassy","description":"microsoft/vscode-mypy's langauge server extension for coc.nvim","archived":false,"fork":false,"pushed_at":"2025-03-23T11:18:45.000Z","size":164,"stargazers_count":10,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-11T15:04:09.024Z","etag":null,"topics":["coc","coc-extensions","coc-mypy","coc-nvim","mypy","neovim","python","python3","vim"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@yaegassy/coc-mypy","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yaegassy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-25T18:45:00.000Z","updated_at":"2025-03-23T11:18:49.000Z","dependencies_parsed_at":"2024-09-08T03:33:46.886Z","dependency_job_id":"20e6145f-d098-4b04-85fd-8c1e04659a48","html_url":"https://github.com/yaegassy/coc-mypy","commit_stats":{"total_commits":51,"total_committers":1,"mean_commits":51.0,"dds":0.0,"last_synced_commit":"d6d53224fbbff39c7d25cde8c4e5971695ff1aae"},"previous_names":["yaegassy/coc-mypy"],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaegassy%2Fcoc-mypy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaegassy%2Fcoc-mypy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaegassy%2Fcoc-mypy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaegassy%2Fcoc-mypy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yaegassy","download_url":"https://codeload.github.com/yaegassy/coc-mypy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249239241,"owners_count":21235822,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["coc","coc-extensions","coc-mypy","coc-nvim","mypy","neovim","python","python3","vim"],"created_at":"2024-10-01T19:02:04.717Z","updated_at":"2025-10-27T17:05:32.108Z","avatar_url":"https://github.com/yaegassy.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# coc-mypy\n\n[microsoft/vscode-mypy](https://github.com/microsoft/vscode-mypy)'s langauge server extension for [coc.nvim](https://github.com/neoclide/coc.nvim).\n\n## Install\n\n**CocInstall**:\n\n```\n:CocInstall @yaegassy/coc-mypy\n```\n\n**When using a plugin manager, etc**:\n\n\u003e e.g. vim-plug\n\n```vim\nPlug 'yaegassy/coc-mypy', {'do': 'yarn install --frozen-lockfile'}\n```\n\n## Server Install\n\n[coc-mypy](https://github.com/yaegassy/coc-mypy) allows you to create an extension-only \"venv\" and install `microsoft/vscode-mypy's langauge server`.\n\nWhen using [coc-mypy](https://github.com/yaegassy/coc-mypy) for the first time, if `microsoft/vscode-mypy's langauge server` is not present in the runtime environment, you will be prompted to do a built-in install.\n\nTo use the built-in installation feature, execute the following command.\n\n```vim\n:CocCommand mypy-type-checker.installServer\n```\n\n## Note\n\n### Use \"dmypy\" or \"mypy\"\n\nThe `microsoft/vscode-mypy language server` uses `dmypy` by default. If you want to use `mypy`, set `mypy-type-checker.useDmypy` to `false`.\n\n**coc-settings.json**:\n\n```jsonc\n{\n  \"mypy-type-checker.useDmypy\": false\n}\n```\n\n### [Use dmypy] Vim/Neovim will exit a little slower\n\nIf you are using `dmypy`, the process of killing the dmypy process is included when Vim/Neovim exits. This may slow down the Vim/Neovim exit process slightly.\n\n### [Use mypy] Initial Diagnostic Display\n\nThe `mypy` command takes time to complete execution if the cache file for `mypy` does not exist. In other words, the first time it is executed, it takes time.\n\nThe same is true if you are using a language server, so it will take some time to display the initial diagnostics.\n\n## Configuration options\n\n- `mypy-type-checker.enable`: Enable coc-mypy extension, default: `true`\n- `mypy-type-checker.useDmypy`: Use dmypy deamon mode as the linting command run by microsoft/vscode-mypy's language server, default: `true`\n- `mypy-type-checker.builtin.pythonPath`: Python 3.x path (Absolute path) to be used for built-in install, default: `\"\"`\n- `mypy-type-checker.showDocumantaion.enable`: Whether to display the code action for open the Mypy rule documentation web page included in the diagnostic information, default: `true`\n- `mypy-type-checker.trace.server`: Traces the communication between coc.nvim and the language server, default: `\"off\"`\n\nOther settings have the same configuration as [microsoft/vscode-mypy](https://github.com/microsoft/vscode-mypy).\n\n## Commands\n\n- `mypy-type-checker.restart`: Restart Server\n- `mypy-type-checker.installServer`: Install Server\n- `mypy-type-checker.showOutput`: Show output channel\n- `mypy-type-checker.version`: Show the version of the server installed by the extension\n\n## Thanks\n\n- [microsoft/vscode-mypy](https://github.com/microsoft/vscode-mypy)\n\n## License\n\nMIT\n\n---\n\n\u003e This extension is built with [create-coc-extension](https://github.com/fannheyward/create-coc-extension)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyaegassy%2Fcoc-mypy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyaegassy%2Fcoc-mypy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyaegassy%2Fcoc-mypy/lists"}