Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func HasBlockingErrors ¶
Types ¶
type DeprecationErrorData ¶
type LinterErrorData ¶
type PipelineError ¶
type PipelineError struct { Type PipelineErrorType `json:"type"` Message string `json:"message"` IsWarning bool `json:"is_warning"` Data any `json:"data"` }
func GetPipelineErrors ¶
func GetPipelineErrors(err error) []*PipelineError
func (*PipelineError) Error ¶
func (e *PipelineError) Error() string
func (*PipelineError) GetLinterData ¶
func (e *PipelineError) GetLinterData() *LinterErrorData
type PipelineErrorType ¶
type PipelineErrorType string
const ( PipelineErrorTypeLinter PipelineErrorType = "linter" // some error with the config syntax PipelineErrorTypeDeprecation PipelineErrorType = "deprecation" // using some deprecated feature PipelineErrorTypeCompiler PipelineErrorType = "compiler" // some error with the config semantics PipelineErrorTypeGeneric PipelineErrorType = "generic" // some generic error PipelineErrorTypeBadHabit PipelineErrorType = "bad_habit" // some bad-habit error )
Click to show internal directories.
Click to hide internal directories.