Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Checkstyle ¶
type Checkstyle struct {
// contains filtered or unexported fields
}
func NewCheckstyle ¶
func NewCheckstyle(w io.Writer) *Checkstyle
type CodeClimate ¶
type CodeClimate struct {
// contains filtered or unexported fields
}
func NewCodeClimate ¶
func NewCodeClimate(w io.Writer) *CodeClimate
type CodeClimateIssue ¶
type CodeClimateIssue struct { Description string `json:"description"` Severity string `json:"severity,omitempty"` Fingerprint string `json:"fingerprint"` Location struct { Path string `json:"path"` Lines struct { Begin int `json:"begin"` } `json:"lines"` } `json:"location"` }
CodeClimateIssue is a subset of the Code Climate spec. https://github.com/codeclimate/platform/blob/master/spec/analyzers/SPEC.md#data-types It is just enough to support GitLab CI Code Quality. https://docs.gitlab.com/ee/user/project/merge_requests/code_quality.html
type InspectionInstance ¶
type InspectionInstance struct {
// contains filtered or unexported fields
}
InspectionInstance reports a specific defect, warning, error message. Includes location, description, and various optional and custom attributes. https://www.jetbrains.com/help/teamcity/service-messages.html#Inspection+Instance
type InspectionType ¶
type InspectionType struct {
// contains filtered or unexported fields
}
InspectionType is the unique description of the conducted inspection. Each specific warning or an error in code (inspection instance) has an inspection type. https://www.jetbrains.com/help/teamcity/service-messages.html#Inspection+Type
type JunitXML ¶
type JunitXML struct {
// contains filtered or unexported fields
}
func NewJunitXML ¶
type TeamCity ¶
type TeamCity struct {
// contains filtered or unexported fields
}
TeamCity printer for TeamCity format.
func NewTeamCity ¶
NewTeamCity output format outputs issues according to TeamCity service message format.