Documentation ¶
Index ¶
Constants ¶
View Source
const MAX_ISSUE_LIMIT = 100
Variables ¶
This section is empty.
Functions ¶
func NewCmdIssuesList ¶
Types ¶
type ExportData ¶ added in v0.3.5
type IssuesListOptions ¶
type IssuesListOptions struct { FileArg []string RepoArg string AnalyzerArg []string LimitArg int OutputFilenameArg string JSONArg bool CSVArg bool SARIFArg bool SelectedRemote *utils.RemoteData // contains filtered or unexported fields }
func (*IssuesListOptions) Run ¶
func (opts *IssuesListOptions) Run() (err error)
Execute the command
type LineColumn ¶ added in v0.3.5
type LocationJSON ¶ added in v0.3.5
type LocationJSON struct { Path string `json:"path"` // The filepath where the issue is reported Position PositionJSON `json:"position"` // The position info where the issue is raised }
type PositionJSON ¶ added in v0.3.5
type PositionJSON struct { Begin LineColumn `json:"begin"` // The line where the code covered under the issue starts End LineColumn `json:"end"` // The line where the code covered under the issue starts }
Click to show internal directories.
Click to hide internal directories.