twitter/twitter-cldr-rb

View on GitHub
lib/twitter_cldr/shared/locale.rb

Summary

Maintainability
C
1 day
Test Coverage

Class Locale has 42 methods (exceeds 20 allowed). Consider refactoring.
Open

    class Locale

      class << self
        # http://unicode.org/reports/tr35/tr35-9.html#Likely_Subtags
        #
Severity: Minor
Found in lib/twitter_cldr/shared/locale.rb - About 5 hrs to fix

    Method identify_subtag has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

            def identify_subtag(subtag)
              [].tap do |types|
                types << :language if language?(subtag)
                types << :script   if script?(subtag)
                types << :region   if region?(subtag)
    Severity: Minor
    Found in lib/twitter_cldr/shared/locale.rb - About 2 hrs 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 normalize has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

            def normalize(locale_text)
              Locale.new(nil).tap do |locale|
                subtags = identify_subtags(locale_text)
    
                until subtags.empty?
    Severity: Minor
    Found in lib/twitter_cldr/shared/locale.rb - About 1 hr 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 initialize has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def initialize(language, script = nil, region = nil, variants = [])
            @language = language ? language.to_s : nil
            @script = script ? script.to_s : nil
            @region = region ? region.to_s : nil
            @variants = Array(variants)
    Severity: Minor
    Found in lib/twitter_cldr/shared/locale.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