View Source Recode.Issue (Recode v0.1.2)

An Issue struct to track findings by the chechers.

Link to this section Summary

Link to this section Types

@type t() :: %Recode.Issue{
  column: non_neg_integer() | nil,
  line: non_neg_integer() | nil,
  message: String.t() | nil,
  meta: term(),
  reporter: module()
}

Link to this section Functions

Link to this function

new(reporter, message, info \\ [], meta \\ nil)

View Source
@spec new(module(), String.t() | nil, keyword(), term()) :: t()