formatter

package
v0.44.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 26, 2022 License: MPL-2.0 Imports: 14 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Formatter

type Formatter struct {
	Stdout  io.Writer
	Stderr  io.Writer
	Format  string
	NoColor bool
}

Formatter outputs appropriate results to stdout and stderr depending on the format

func (*Formatter) Print

func (f *Formatter) Print(issues tflint.Issues, err error, sources map[string][]byte)

Print outputs the given issues and errors according to configured format

type JSONError added in v0.30.0

type JSONError struct {
	Summary  string     `json:"summary,omitempty"`
	Message  string     `json:"message"`
	Severity string     `json:"severity"`
	Range    *JSONRange `json:"range,omitempty"` // pointer so omitempty works
}

JSONError is a temporary structure for converting errors to JSON.

type JSONIssue added in v0.30.0

type JSONIssue struct {
	Rule    JSONRule    `json:"rule"`
	Message string      `json:"message"`
	Range   JSONRange   `json:"range"`
	Callers []JSONRange `json:"callers"`
}

JSONIssue is a temporary structure for converting TFLint issues to JSON.

type JSONOutput

type JSONOutput struct {
	Issues []JSONIssue `json:"issues"`
	Errors []JSONError `json:"errors"`
}

JSONOutput is a temporary structure for converting to JSON.

type JSONPos added in v0.30.0

type JSONPos struct {
	Line   int `json:"line"`
	Column int `json:"column"`
}

JSONPos is a temporary structure for converting positions to JSON.

type JSONRange added in v0.30.0

type JSONRange struct {
	Filename string  `json:"filename"`
	Start    JSONPos `json:"start"`
	End      JSONPos `json:"end"`
}

JSONRange is a temporary structure for converting ranges to JSON.

type JSONRule added in v0.30.0

type JSONRule struct {
	Name     string `json:"name"`
	Severity string `json:"severity"`
	Link     string `json:"link"`
}

JSONRule is a temporary structure for converting TFLint rules to JSON.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL