Issue represents an Issue to search for in the codebase. The pattern field is a RegEx string which must compile.
| 17 | // Issue represents an Issue to search for in the codebase. |
| 18 | // The pattern field is a RegEx string which must compile. |
| 19 | type Issue struct { |
| 20 | Identifier string |
| 21 | Severity Severity |
| 22 | Title string |
| 23 | Link string |
| 24 | Pattern string |
| 25 | } |
| 26 | |
| 27 | // Finding represents a possible Issue found in the codebase. |
| 28 | type Finding struct { |
nothing calls this directly
no outgoing calls
no test coverage detected