Documentation ¶ Index ¶ Constants type Issue type Output Constants ¶ View Source const ( IgnoreComment = "goimmutablelint:ignore" CheckComment = "goimmutablelint:check" ) Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Issue ¶ type Issue struct { FromLinter string `json:"FromLinter"` Text string `json:"Text"` Pos struct { Filename string `json:"Filename"` Offset int `json:"Offset"` Line int `json:"Line"` Column int `json:"Column"` } `json:"Pos"` } type Output ¶ type Output struct { Issues []Issue `json:"Issues"` Report struct { Warnings int `json:"Warnings"` Errors int `json:"Errors"` } `json:"Report"` } Source Files ¶ View all Source files types.go Click to show internal directories. Click to hide internal directories.