Report is the end result of an analysis containing the files analyzed, the issues searched for and a map of findings per issue.
| 8 | // Report is the end result of an analysis containing the files analyzed, |
| 9 | // the issues searched for and a map of findings per issue. |
| 10 | type Report struct { |
| 11 | Issues []Issue |
| 12 | FilesAnalyzed []string |
| 13 | // Key is Issue Identifier |
| 14 | FindingsPerIssue map[string][]Finding |
| 15 | } |
| 16 | |
| 17 | // Issue represents an Issue to search for in the codebase. |
| 18 | // The pattern field is a RegEx string which must compile. |
nothing calls this directly
no outgoing calls
no test coverage detected