Documentation
¶
Index ¶
- Constants
- Variables
- func Colorize(s string, c Color) string
- func Grade(score int) string
- func Titleize(r string, count int) string
- type Builder
- func (b *Builder) AddError(err error)
- func (b *Builder) AddSection(name string, o issues.Outcome, t *Tally)
- func (b *Builder) PrintClusterInfo(s *Sanitizer, name string, metrics bool)
- func (b *Builder) PrintHeader(s *Sanitizer)
- func (b *Builder) PrintReport(level issues.Level, s *Sanitizer)
- func (b *Builder) PrintSummary(s *Sanitizer)
- func (b *Builder) ToJSON() (string, error)
- func (b *Builder) ToYAML() (string, error)
- type Color
- type Issue
- type Report
- type Sanitizer
- func (s *Sanitizer) Badge(score int) []string
- func (s *Sanitizer) Close()
- func (s *Sanitizer) Color(msg string, c Color) string
- func (s *Sanitizer) Comment(msg string)
- func (s *Sanitizer) Dump(l issues.Level, ii issues.Issues)
- func (s *Sanitizer) EmojiForLevel(l issues.Level) string
- func (s *Sanitizer) Error(msg string, err error)
- func (s *Sanitizer) Open(msg string, t *Tally)
- func (s *Sanitizer) Print(l issues.Level, indent int, msg string)
- type Section
- type Tally
Constants ¶
const ( // DefaultFormat dumps sanitizer with color, emojis, the works. DefaultFormat = "standard" // JurassicFormat dumps sanitizer with 0 fancyness. JurassicFormat = "jurassic" // YAMLFormat dumps sanitizer as YAML YAMLFormat = "yaml" // JSONFormat dumps sanitizer as JSON JSONFormat = "json" )
const ( // FontBold style FontBold = 1 // Width denotes the maximum width of the sanitizer report. Width = 100 )
Variables ¶
var Logo = []string{
"K .-'-. ",
" 8 __| `\\ ",
" s `-,-`--._ `\\",
" [] .->' a `|-'",
" `=/ (__/_ / ",
" \\_, ` _) ",
" `----; | ",
}
Logo popeye
var Popeye = []string{
` ___ ___ _____ _____ `,
`| _ \___| _ \ __\ \ / / __|`,
`| _/ _ \ _/ _| \ V /| _| `,
`|_| \___/_| |___| |_| |___|`,
}
Popeye title
Functions ¶
Types ¶
type Builder ¶ added in v0.3.0
type Builder struct {
Report Report `json:"popeye" yaml:"popeye"`
}
Builder represents sanitizer
func NewBuilder ¶ added in v0.3.0
func NewBuilder() *Builder
NewBuilder returns a new sanitizer report.
func (*Builder) AddSection ¶ added in v0.3.0
AddSection adds a sanitizer section to the report.
func (*Builder) PrintClusterInfo ¶ added in v0.3.6
PrintClusterInfo displays cluster information.
func (*Builder) PrintHeader ¶ added in v0.3.0
PrintHeader prints report header to screen.
func (*Builder) PrintReport ¶ added in v0.3.0
PrintReport prints out sanitizer report to screen
func (*Builder) PrintSummary ¶ added in v0.3.0
PrintSummary print outs summary report to screen.
type Color ¶
type Color int
Color tracks the output color.
const ( ColorOrangish Color = 220 ColorOrange Color = 208 ColorGray Color = 250 ColorWhite Color = 15 ColorBlue Color = 105 ColorRed Color = 196 ColorCoolBlue Color = 99 ColorAqua Color = 122 ColorDarkOlive Color = 155 ColorLighSlate Color = 75 ColorYellow Color = 226 ColorYellow2 Color = 190 ColorGreenPale Color = 114 ColorGreen Color = 82 )
Color ANSI palette (256!)
type Issue ¶ added in v0.3.4
type Issue interface { MaxSeverity(string) issues.Level Severity() issues.Level Description() string HasSubIssues() bool SubIssues() map[string][]Issue }
Issue represents a sanitizer issues.
type Report ¶ added in v0.3.0
type Report struct { Score int `json:"score" yaml:"score"` Grade string `json:"grade" yaml:"grade"` Sections []Section `json:"sanitizers,omitempty" yaml:"sanitizers,omitempty"` Errors []error `json:"errors,omitempty" yaml:"errors,omitempty"` // contains filtered or unexported fields }
Report represents the output of a sanitization pass.
type Sanitizer ¶ added in v0.2.0
Sanitizer represents a sanitizer report.
func NewSanitizer ¶ added in v0.2.0
NewSanitizer returns a new sanitizer report writer.
func (*Sanitizer) EmojiForLevel ¶ added in v0.2.0
EmojiForLevel maps lint levels to emojis.
type Section ¶ added in v0.3.0
type Section struct { Title string `json:"sanitizer" yaml:"sanitizer"` Tally *Tally `json:"tally" yaml:"tally"` Outcome issues.Outcome `json:"issues,omitempty" yaml:"issues,omitempty"` }
Section represents a sanitizer pass
type Tally ¶
type Tally struct {
// contains filtered or unexported fields
}
Tally tracks lint section scores.
func (*Tally) MarshalJSON ¶ added in v0.3.0
MarshalJSON renders a tally to JSON.
func (*Tally) MarshalYAML ¶ added in v0.3.0
MarshalYAML renders a tally to YAML.