Giter Site home page Giter Site logo

garif's People

Contributors

carstencodes avatar chavacava avatar dependabot[bot] avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

carstencodes

garif's Issues

Support for kind/level?

Hi,

currently, kind and level are specified as interface.

The SARIF Spec at this points allows the following values for kind:

  • pass
  • open
  • informational
  • notApplicable
  • review
  • fail

The following values are allowed for level:

  • warning
  • error
  • note
  • none

I suggest the following change:

// file: enums.go

package garif;

type ResultKind string

// declare JSON values
const (
   pass ResultKind = "pass"
   open ResultKind = "open"
   informational ResultKind = "informational"
   notApplicable ResultKind = "notApplicable"
   review ResultKind = "review"
   fail ResultKind = "fail"
)

// create public visible constants with a namespace as enums
const (
    ResultKind_Pass ResultKind = pass
    ResultKind_Open ResultKind = open
    ResultKind_Informational ResultKind = informational
    ResultKind_NotApplicable ResultKind = notApplicable
    ResultKind_Review ResultKind = review
    ResultKind_Fail ResultKind = fail
)

type ResultLevel string

// declare JSON values
const (
    warning ResultLevel = "warning"
    error ResultLevel = "error"
    note ResultLevel = "note"
    none ResultLevel = "none"
)

// create public visible constants with a namespace as enums
const (
    ResultLevel_Warning ResultLevel = warning
    ResultLevel_Error ResultLevel = error
    ResultLevel_Note ResultLevel = note
    ResultLevel_None ResultLevel = none
)

This way, the types of kind and level could be set to ResultKind and ResultLevel.

What do you think? Should I submit a pull request?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.