An open API service indexing awesome lists of open source software.

https://github.com/drom/svlint

SystemVerilog Linter
https://github.com/drom/svlint

Last synced: about 1 year ago
JSON representation

SystemVerilog Linter

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));

```