mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
56f943b802
This feature adds support to generate auto fixes for Go scanning findings using LLM (AI). In a first instance, it relies on Gemini API to get a suggestion for a solution. This can be later extended, to integrate also other AI providers. --------- Signed-off-by: Cosmin Cojocar <ccojocar@google.com> Co-authored-by: ccoVeille <3875889+ccoVeille@users.noreply.github.com> Co-authored-by: Cosmin Cojocar <ccojocar@google.com>
22 lines
888 B
Go
22 lines
888 B
Go
package sarif
|
|
|
|
// Level SARIF level
|
|
// From https://docs.oasis-open.org/sarif/sarif/v2.0/csprd02/sarif-v2.0-csprd02.html#_Toc10127839
|
|
type Level string
|
|
|
|
const (
|
|
// None : The concept of “severity” does not apply to this result because the kind
|
|
// property (§3.27.9) has a value other than "fail".
|
|
None = Level("none")
|
|
// Note : The rule specified by ruleId was evaluated and a minor problem or an opportunity
|
|
// to improve the code was found.
|
|
Note = Level("note")
|
|
// Warning : The rule specified by ruleId was evaluated and a problem was found.
|
|
Warning = Level("warning")
|
|
// Error : The rule specified by ruleId was evaluated and a serious problem was found.
|
|
Error = Level("error")
|
|
// Version : SARIF Schema version
|
|
Version = "2.2.0"
|
|
// Schema : SARIF Schema URL
|
|
Schema = "https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-schema-2.2.json"
|
|
)
|