{"id":16686376,"url":"https://github.com/yoheimuta/vim-protolint","last_synced_at":"2026-01-27T11:05:01.748Z","repository":{"id":56194348,"uuid":"225995784","full_name":"yoheimuta/vim-protolint","owner":"yoheimuta","description":"Vim integration for protolint. https://github.com/yoheimuta/protolint","archived":false,"fork":false,"pushed_at":"2021-04-10T05:14:10.000Z","size":469,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-03T03:29:31.870Z","etag":null,"topics":["ale","fixer","linter","protobuf","protoc","protocol-buffers","protolint","syntastic","vim-plugin","vim-protolint"],"latest_commit_sha":null,"homepage":"","language":"Vim script","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/yoheimuta.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}},"created_at":"2019-12-05T02:08:41.000Z","updated_at":"2021-04-10T05:14:11.000Z","dependencies_parsed_at":"2022-08-15T14:30:47.290Z","dependency_job_id":null,"html_url":"https://github.com/yoheimuta/vim-protolint","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yoheimuta/vim-protolint","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoheimuta%2Fvim-protolint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoheimuta%2Fvim-protolint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoheimuta%2Fvim-protolint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoheimuta%2Fvim-protolint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yoheimuta","download_url":"https://codeload.github.com/yoheimuta/vim-protolint/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoheimuta%2Fvim-protolint/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28812367,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T07:41:26.337Z","status":"ssl_error","status_checked_at":"2026-01-27T07:41:08.776Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["ale","fixer","linter","protobuf","protoc","protocol-buffers","protolint","syntastic","vim-plugin","vim-protolint"],"created_at":"2024-10-12T15:05:38.276Z","updated_at":"2026-01-27T11:05:01.732Z","avatar_url":"https://github.com/yoheimuta.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vim-protolint\n\nThis provides Vim integration for protolint linting and fixing via the [ALE engine](https://github.com/dense-analysis/ale).\n\n- NOTE: [The latest ale](https://github.com/dense-analysis/ale/pull/2911) supports protolint natively. If you use ale as a linting solution, this repository is in favor of the upstream support. The setting specified in .vimrc works as before. \n\nIt also enables you to check errors with [Syntastic](https://github.com/vim-syntastic/syntastic).\n\n## Installation\n\n[protolint](https://github.com/yoheimuta/protolint) must be installed.\nNote that the binary with **v0.22.0 or above** is supported\n\n### Installation with Vim package management\n\nIn Vim 8 and NeoVim, you can install plugins easily without needing to use any\nother tools. Simply clone the plugin into your pack directory.\n\n```\nmkdir -p ~/.vim/pack/git-plugins/start\n\n# NOTE: In recent, dense-analysis/ale incorporated the same source code this repository has maintained. \n## Thus, you don't have to install this repository to run protolint on ale.\ngit clone --depth 1 https://github.com/yoheimuta/vim-protolint.git ~/.vim/pack/git-plugins/start/vim-protolint\n\n# NOTE: Install either ale or syntastic if you haven't installed yet.\ngit clone --depth 1 https://github.com/dense-analysis/ale.git ~/.vim/pack/git-plugins/start/ale\ngit clone --depth 1 https://github.com/vim-syntastic/syntastic.git ~/.vim/pack/git-plugins/start/syntastic\n```\n\n## Demo\n\n\u003cimg src=\"doc/demo.gif\" alt=\"demo\" width=\"600\"/\u003e\n\n## Usage\n\n### Error checking with ALE\n\nAdd the following to your .vimrc.\n\n```vim\nlet g:ale_linters = {\n\\   'proto': ['protolint'],\n\\}\n\nlet g:ale_fixers = {\n\\   'proto': ['ale#fixers#protolint#Fix'],\n\\}\n\n\" We recommend you set this.\nlet g:ale_lint_on_text_changed = 'never'\n\n\" You can remove comment outs below if you want to configure parameters.\n\" let g:ale_proto_protolint_executable = \"/usr/local/bin/protolint\"\n\" let g:ale_proto_protolint_config =\n\"            \\ \"/path/to/config/.protolint.yaml\"\n\n```\n\nSee [doc/ale-proto.txt](doc/ale-proto.txt) in more detail.\n\n### Error checking with Syntastic\n\nAdd the following to your .vimrc.\n\n```vim\nlet g:syntastic_proto_checkers = ['protolint']\n\n\" You can remove comment outs below if you want to configure parameters.\n\" let g:syntastic_proto_protolint_exec = \"/usr/local/bin/protolint\"\n\" let g:syntastic_proto_protolint_args =\n\"            \\ \"-config_path= /path/to/config/.protolint.yaml\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoheimuta%2Fvim-protolint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyoheimuta%2Fvim-protolint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoheimuta%2Fvim-protolint/lists"}