{"id":19219972,"url":"https://github.com/zhutmost/vscode-svlint","last_synced_at":"2026-06-22T05:31:32.805Z","repository":{"id":182061799,"uuid":"667755898","full_name":"zhutmost/vscode-svlint","owner":"zhutmost","description":null,"archived":false,"fork":false,"pushed_at":"2023-07-18T13:23:40.000Z","size":319,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-23T09:21:40.558Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/zhutmost.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-07-18T08:27:14.000Z","updated_at":"2023-07-18T13:24:24.000Z","dependencies_parsed_at":"2023-07-18T15:48:13.861Z","dependency_job_id":null,"html_url":"https://github.com/zhutmost/vscode-svlint","commit_stats":null,"previous_names":["zhutmost/vscode-svlint"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/zhutmost/vscode-svlint","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhutmost%2Fvscode-svlint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhutmost%2Fvscode-svlint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhutmost%2Fvscode-svlint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhutmost%2Fvscode-svlint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zhutmost","download_url":"https://codeload.github.com/zhutmost/vscode-svlint/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhutmost%2Fvscode-svlint/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34636427,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-22T02:00:06.391Z","response_time":106,"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-11-09T14:33:28.337Z","updated_at":"2026-06-22T05:31:32.784Z","avatar_url":"https://github.com/zhutmost.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=center\u003e SystemVerilog Linter in VSCode \u003c/h1\u003e\n\u003cdiv align=\"center\"\u003e\n\n**Lint your SystemVerilog on the fly!**\n\n\u003c/div\u003e\n\n\u003cimg alt=\"vscode-svlint screenshot\" src=\"https://github.com/zhutmost/vscode-svlint/raw/main/img/screenshot.jpg\" width=\"100%\" height=\"100%\"\u003e\n\n## Installation \u0026 Setup\n\n### Requirements\n\n- [svlint](https://github.com/dalance/svlint), an open-sourced linter for SystemVerilog, must be installed in your `PATH` environment variable.\n- Custom your linting rule file `.svlint.toml`, and put it to the repository root or set a environment variable `SVLINT_CONFIG`.\n\n*Important:* If no configuration is found, the default behavior is to enable all rules, which is certain to show failures because some rules conflict, e.g. `keyword_forbidden_generate` and `keyword_required_generate`.\n\nAn example rule file is provided on my GitHub Gist ([link](https://gist.githubusercontent.com/zhutmost/ee489d0a0b9322743bcfbfd5d85662a4/raw/.svlint.toml)). You can save this file as `/path/to/your/repo/.svlint.toml`.\n\n### Configurations\n\nBy default, the linter `svlint` is invoked as follows:\n```shell\nsvlint -1 $file\n```\nwhere `$file` is the RTL file currently opened in the editor.\n\nYou can edit `svlint.linters.svlint.command` in your VSCode setting file `settings.json`:\n```js\n\"svlint.linters\": {\n    \"svlint\": {\n        \"command\": [ \"svlint\", \"-1\", \"$file\" ],\n        ...\n    }\n}\n```\n\nFor example, if you want to force `svlint` to use `abc.toml` as its configuration file, you can:\n```js\n\"svlint.linters\": {\n    \"svlint\": {\n        \"command\": [ \"svlint\", \"-1\", \"--config\", \"/path/to/abc.toml\", \"$file\" ],\n        ...\n    }\n}\n```\n\nFor more `svlint` usage, please `svlint --help` in your command line, or read [its maunal](https://github.com/dalance/svlint/blob/master/MANUAL.md).\nNote that not all the `svlint` options are supported by this extension. Only the options listed below are allowed.\n\n```log\nsvlint v0.8.0 rev:b9010664 rustc:1.70.0 built:2023-06-26T09:53:23\n\nUSAGE:\n    svlint [OPTIONS] [--] [FILES]...\n\nOPTIONS:\n    -c, --config \u003cCONFIG\u003e\n            TOML configuration file [default: .svlint.toml]\n\n    -d, --define \u003cDEFINES\u003e\n            Define\n\n    -f, --filelist \u003cFILELIST\u003e\n            File list\n\n    -i, --include \u003cINCLUDES\u003e\n            Include directory path\n\n        --ignore-include\n            Ignore any include\n\n    -p, --plugin \u003cPLUGINS\u003e\n            Plugin file\n```\n\n## Inspiration \u0026 Contribution\n\nIf you find any bugs or have any ideas, please feel free to [open an issue](https://github.com/zhutmost/vscode-svlint/issues).\n\nThis extension is powered by [@dalance/svlint](https://github.com/dalance/svlint), [@fnando/vscode-linter](https://github.com/fnando/vscode-linter) and many other open-source projects.\nThanks for their excellent jobs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzhutmost%2Fvscode-svlint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzhutmost%2Fvscode-svlint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzhutmost%2Fvscode-svlint/lists"}