Showing 4 of 6 total issues
Method load_formats
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
def load_formats(country_data, territory)
formats_arr = territory.css('availableFormats numberFormat').map do |format|
{}.tap do |fhash|
format.attributes.values.each do |attr|
key = underscore(attr.name).to_sym
- Read upRead up
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"
Further reading
Method parse_remote_data
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def self.parse_remote_data(counter, table)
output = { counter.to_s => {} }
table.elements.each do |row|
next if row.elements.one?
key = case row.elements.css('th').text
- Read upRead up
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"
Further reading
Method parse_prefix
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def parse_prefix
return original_number unless country.national_prefix_for_parsing
duped = original_number.dup
match_object = duped.match("^(?:#{country.national_prefix_for_parsing})")
- Read upRead up
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"
Further reading
Method load_validations
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def load_validations(country_data, territory)
country_data[:validations] = {}
territory.elements.each do |element|
next if element.name == 'references' || element.name == 'availableFormats'
country_data[:validations][underscore(element.name).to_sym] = {}.tap do |validation_hash|
- Read upRead up
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"