https://github.com/drom/svlint
SystemVerilog Linter
https://github.com/drom/svlint
Last synced: about 1 year ago
JSON representation
SystemVerilog Linter
- Host: GitHub
- URL: https://github.com/drom/svlint
- Owner: drom
- License: mit
- Created: 2019-10-01T05:12:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-01T03:27:23.000Z (about 5 years ago)
- Last Synced: 2025-04-01T02:46:37.156Z (about 1 year ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# svlint
SystemVerilog Linter
## Install
```
npm i svlint
```
## CLI Use
```
svlint < myblock.sv
```
## API Use
```js
const svlinter = require('svlint/lib/linter.js');
svlinter(tree.rootNode, (node, severity, excerpt) =>
console.error(node, severity, excerpt));
```