lib/xcoderesultbundleprocessor/snapshot_summary.rb
Assignment Branch Condition size for parse is too high. [31.13/20] Open
Open
def self.parse(element_snapshot)
element_class = nil
if element_snapshot.key?(:additionalAttributes) and element_snapshot[:additionalAttributes].key?(5004.to_s.to_sym)
element_class = element_snapshot[:additionalAttributes][5004.to_s.to_sym]
end
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric
Method summary
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
def summary
summary_components = [
self.element_class || 'UnknownElement',
self.frame
]
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"