infinum/enumerations

View on GitHub

Showing 2 of 2 total issues

Method define_setter_method has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    def define_setter_method(reflection)
      define_method("#{reflection.name}=") do |other|
        enumeration_value = reflection.enumerator_class.find(other)

        if other.present? && enumeration_value.nil?
Severity: Minor
Found in lib/enumerations.rb - About 55 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 define_attributes_getters has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    def define_attributes_getters
      @attributes.each do |key, _|
        next if self.class.method_defined?(key)

        self.class.send :define_method, key do |locale: I18n.locale|
Severity: Minor
Found in lib/enumerations/value.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