Current section

Files

Jump to
credo lib credo issue.ex
Raw

lib/credo/issue.ex

defmodule Credo.Issue do
defstruct check: nil,
category: nil,
priority: 0,
severity: nil,
message: nil,
filename: nil,
line_no: nil,
column: nil,
exit_status: 0,
trigger: nil, # optional: the String that triggered the check to fail
meta: [], # optional: metadata filled in by the check
scope: nil # optional: the name of the module, macro or
# function where the issue was found
end