Skip to content

Commit 7f8b335

Browse files
authored
update docs (#604)
1 parent 9694049 commit 7f8b335

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,9 @@ vet scan -D . --report-json=report.json
351351
352352
# CSV for spreadsheet analysis
353353
vet scan -D . --report-csv=report.csv
354+
355+
# HTML for web-based analysis
356+
vet scan -D . --report-html=report.html
354357
```
355358

356359
</td>
@@ -392,7 +395,8 @@ vet scan -D . --report-graph=dependencies.dot
392395
vet scan -D . \
393396
--report-json=report.json \
394397
--report-sarif=report.sarif \
395-
--report-markdown=report.md
398+
--report-markdown=report.md \
399+
--report-html=report.html
396400
397401
# Focus on specific issues
398402
vet scan -D . \

cmd/cloud/quickstart.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func executeCloudQuickstart() error {
9191

9292
// TODO: We need the ability to auto-detect the project name and version
9393
// and then use that to sync the results to SafeDep Cloud
94-
ui.PrintMsg("✨ Run `vet scan -D /path/to/code --report-sync to scan your code and sync the results to SafeDep Cloud")
94+
ui.PrintMsg("✨ Run `vet scan -D /path/to/code --report-sync` to scan your code and sync the results to SafeDep Cloud")
9595

9696
return nil
9797
}

0 commit comments

Comments
 (0)