{"id":22293586,"url":"https://github.com/xi/vim-lint","last_synced_at":"2026-01-06T16:03:55.604Z","repository":{"id":150048469,"uuid":"172234103","full_name":"xi/vim-lint","owner":"xi","description":"Lint plugin for vim","archived":false,"fork":false,"pushed_at":"2024-07-02T19:04:39.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-25T22:18:11.171Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Vim Script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2019-02-23T16:06:37.000Z","updated_at":"2024-07-02T19:04:42.000Z","dependencies_parsed_at":"2024-03-02T12:31:16.643Z","dependency_job_id":"4bc2f24e-736e-4c5f-8ee6-7c3cf4ca9b30","html_url":"https://github.com/xi/vim-lint","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/xi/vim-lint","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xi%2Fvim-lint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xi%2Fvim-lint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xi%2Fvim-lint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xi%2Fvim-lint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xi","download_url":"https://codeload.github.com/xi/vim-lint/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xi%2Fvim-lint/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28226411,"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","status":"online","status_checked_at":"2026-01-06T02:00:07.049Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-12-03T17:29:44.925Z","updated_at":"2026-01-06T16:03:55.573Z","avatar_url":"https://github.com/xi.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vim-lint\n\n`vim-lint` is a vim plugin that runs the currently open file through a\nlinter.\n\nIt is much simpler than [syntastic][1]. In fact, the implementation is\nbasically a simplified version of [vim-flake8][2]. It basically has no options.\nHowever, much like syntastic, you can configure `vim-lint` to use many\ndifferent linters (but only one per file type).\n\n[1]: https://github.com/vim-syntastic/syntastic/\n[2]: https://github.com/nvie/vim-flake8/\n\n## Usage\n\nPress `\u003cF7\u003e` to run a linter on the current file.\n\nFor most file types you will probably have to install and configure a linter\nfirst:\n\n```viml\n\" ftplugin/python_lint.vim\nif executable('flake8')\n    let b:lint_prg = 'flake8 --ignore=W191,W503'\n    let b:lint_format = '%f:%l:%c: %m'\nendif\n```\n\nFor details about `g:line_format`, see `:help errorformat`.\n\nTo run the linter automatically on save, add the following line to your\n`.vimrc` file:\n\n```viml\nautocmd BufWritePost * call Lint()\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxi%2Fvim-lint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxi%2Fvim-lint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxi%2Fvim-lint/lists"}