renuo/i18n-docs

View on GitHub

Showing 4 of 4 total issues

Method find_missing_keys has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

    def find_missing_keys
      output_available_locales
      output_unique_key_stats(all_keys)

      missing_keys = {}
Severity: Minor
Found in lib/i18n_docs/missing_keys_finder.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 store_translation has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    def store_translation(keys, locale, value)
      return nil if value.nil? # we don't store keys that don't have a valid value
      # Google Spreadsheet does not export empty strings and therefore we use '_' as a replacement char.
      value = '' if value == '_'

Severity: Minor
Found in lib/i18n_docs/csv_to_yaml.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 find_missing_keys has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def find_missing_keys
      output_available_locales
      output_unique_key_stats(all_keys)

      missing_keys = {}
Severity: Minor
Found in lib/i18n_docs/missing_keys_finder.rb - About 1 hr to fix

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

        def output_missing_keys(missing_keys)
          if missing_keys.any?
            puts "#{missing_keys.size} #{missing_keys.size == 1 ? 'key is missing' : 'keys are missing'} from one or more locales:"
            missing_keys.keys.sort.each do |key|
              puts "'#{key}': Missing from #{missing_keys[key].collect(&:inspect).join(', ')}"
    Severity: Minor
    Found in lib/i18n_docs/missing_keys_finder.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

    Severity
    Category
    Status
    Source
    Language