Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Checkstyle ¶ added in v1.7.1
type Checkstyle struct {
// contains filtered or unexported fields
}
Checkstyle prints issues in the Checkstyle format. https://checkstyle.org/config.html
func NewCheckstyle ¶ added in v1.7.1
func NewCheckstyle(log logutils.Log, w io.Writer) *Checkstyle
type CodeClimate ¶ added in v1.14.0
type CodeClimate struct {
// contains filtered or unexported fields
}
CodeClimate prints issues in the Code Climate format. https://github.com/codeclimate/platform/blob/HEAD/spec/analyzers/SPEC.md
func NewCodeClimate ¶ added in v1.14.0
func NewCodeClimate(log logutils.Log, w io.Writer) *CodeClimate
type GitHubAction ¶ added in v1.58.1
type GitHubAction struct {
// contains filtered or unexported fields
}
func NewGitHubAction ¶ added in v1.58.1
func NewGitHubAction(w io.Writer) *GitHubAction
NewGitHubAction output format outputs issues according to GitHub Action. Deprecated
type HTML ¶ added in v1.41.0
type HTML struct {
// contains filtered or unexported fields
}
HTML prints issues in an HTML page. It uses the Cloudflare CDN (cdnjs) and React.
type InspectionInstance ¶ added in v1.52.0
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 ¶ added in v1.52.0
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 JSON ¶
type JSON struct {
// contains filtered or unexported fields
}
JSON prints issues in a JSON representation.
type JSONResult ¶ added in v1.6.1
type JUnitXML ¶ added in v1.64.0
type JUnitXML struct {
// contains filtered or unexported fields
}
JUnitXML prints issues in the JUnit XML format. There is no official specification for the JUnit XML file format, and various tools generate and support different flavors of this format. https://github.com/testmoapp/junitxml
type Printer ¶
type Printer struct {
// contains filtered or unexported fields
}
Printer prints issues
type Sarif ¶ added in v1.59.0
type Sarif struct {
// contains filtered or unexported fields
}
Sarif prints issues in the SARIF format. https://sarifweb.azurewebsites.net/ https://docs.oasis-open.org/sarif/sarif/v2.1.0/
type SarifOutput ¶ added in v1.59.0
type Tab ¶ added in v1.4.1
type Tab struct {
// contains filtered or unexported fields
}
Tab prints issues using tabulation as a field separator.
type TeamCity ¶ added in v1.52.0
type TeamCity struct {
// contains filtered or unexported fields
}
TeamCity prints issues in the TeamCity format. https://www.jetbrains.com/help/teamcity/service-messages.html
func NewTeamCity ¶ added in v1.52.0
NewTeamCity output format outputs issues according to TeamCity service message format.