add linting in vscode

This commit is contained in:
Brendan Haines 2022-11-19 16:27:52 -07:00
parent 0fea83e14c
commit 03828419a9
2 changed files with 15 additions and 0 deletions

7
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"recommendations": [
"mshr-h.veriloghdl",
"zhwu95.riscv",
"hediet.vscode-drawio"
]
}

8
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,8 @@
{
"editor.rulers": [
120
],
"editor.formatOnSave": true,
"verilog.linting.linter": "iverilog",
"verilog.linting.iverilog.arguments": "-g2012 -i -Wall",
}