twitter/twitter-cldr-rb

View on GitHub
lib/twitter_cldr/resources/calendars_importer.rb

Summary

Maintainability
A
2 hrs
Test Coverage

Method elements has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

      def elements(node, kind, context, width, options = {})
        node.xpath(kind).each_with_object({}) do |node, result|
          key = node.attribute('type').value
          key = key =~ /^\d*$/ ? key.to_i : key.to_sym

Severity: Minor
Found in lib/twitter_cldr/resources/calendars_importer.rb - About 45 mins to fix

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 elements has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

      def elements(node, kind, context, width, options = {})
Severity: Minor
Found in lib/twitter_cldr/resources/calendars_importer.rb - About 35 mins to fix

    Method eras has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def eras
            return {} unless calendar
    
            ERA_TAGS.each_with_object({}) do |era_tag, result|
              key  = era_tag.gsub('era', '').gsub(/s$/, '').downcase.to_sym
    Severity: Minor
    Found in lib/twitter_cldr/resources/calendars_importer.rb - About 25 mins to fix

    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 contexts has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def contexts(kind, options = {})
            return {} unless calendar
    
            dtd.find_attr("#{kind}Context", 'type').values.each_with_object({}) do |context, result|
              node = calendar.xpath("#{kind}s/#{kind}Context[@type='#{context}']").first
    Severity: Minor
    Found in lib/twitter_cldr/resources/calendars_importer.rb - About 25 mins to fix

    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

    There are no issues that match your filters.

    Category
    Status