eugeniobruno/forester

View on GitHub

Showing 8 of 8 total issues

Method validate_uniqueness_of_fields has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

    def validate_uniqueness_of_fields(fields, options = {})
      options = default_validator_options.merge(options)

      failures = Hash.new(Hash.new([]))

Severity: Minor
Found in lib/forester/tree_node_ext/validators.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 as_root_hash has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

    def as_root_hash(options = {})
      default_options = {
        max_depth:      :none,
        children_key:   'children',
        stringify_keys: false,
Severity: Minor
Found in lib/forester/tree_node_ext/serializers.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 validate_uniqueness_of_fields_combination has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

    def validate_uniqueness_of_fields_combination(fields, options = {})
      options = default_validator_options.merge(options)

      failures = Hash.new(Hash.new([]))

Severity: Minor
Found in lib/forester/tree_node_ext/validators.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 as_root_hash has 34 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def as_root_hash(options = {})
      default_options = {
        max_depth:      :none,
        children_key:   'children',
        stringify_keys: false,
Severity: Minor
Found in lib/forester/tree_node_ext/serializers.rb - About 1 hr to fix

    Method validate_uniqueness_of_fields has 27 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def validate_uniqueness_of_fields(fields, options = {})
          options = default_validator_options.merge(options)
    
          failures = Hash.new(Hash.new([]))
    
    
    Severity: Minor
    Found in lib/forester/tree_node_ext/validators.rb - About 1 hr to fix

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

          def get(field, default = :raise)
            if has_field?(field)
              content[field]
            elsif block_given?
              yield(field, self)
      Severity: Minor
      Found in lib/forester/tree_node.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 leaves_when_pruned_to_depth has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def leaves_when_pruned_to_depth(d)
            ret = []
            each_node(traversal: :breadth_first) do |node|
              relative_depth_of_descendant = node.node_depth - node_depth
              break if relative_depth_of_descendant > d
      Severity: Minor
      Found in lib/forester/tree_node.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 delete_values_in_node has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def delete_values_in_node(field, values, options = {})
            default_options = {
              percolate: false
            }
            options = default_options.merge(options)
      Severity: Minor
      Found in lib/forester/tree_node_ext/mutators.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