beatrichartz/babylonia

View on GitHub

Showing 3 of 3 total issues

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

    def install_locale_options_evaluation(options)
      # Evaluate a localization option
      #
      define_method :evaluate_localization_option! do |option, field=nil, recursion=false|
        o = options[option]
Severity: Minor
Found in lib/babylonia/class_methods.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 method_missing has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    def method_missing meth, *args, &block
      if parts = extract_locale_method_parts(meth)
        parts[2] ? send(parts[0] + parts[2].to_s, { parts[1].to_sym => args.first }) : send(parts[0], parts[1].to_sym, args.first || {})
      else
        super(meth, *args, &block)
Severity: Minor
Found in lib/babylonia/class_methods.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 evaluate_locale_options_for has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    def evaluate_locale_options_for(fields)
      options                     = fields.last.is_a?(Hash) ? fields.pop : {}
      options[:locale]            ||= lambda { |r| I18n.locale }
      options[:default_locale]    ||= lambda { |r| I18n.default_locale }
      options[:available_locales] ||= lambda { |r| I18n.available_locales }
Severity: Minor
Found in lib/babylonia/class_methods.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

Severity
Category
Status
Source
Language