piotrmurach/tty-tree

View on GitHub

Showing 5 of 5 total issues

Method walk has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
Open

      def walk(parent_path, entries, prefix, level)
        if entries.empty? || (@level != -1 && @level < level)
          return
        else
          return if @file_limit != -1 && entries.size > @file_limit
Severity: Minor
Found in lib/tty/tree/path_walker.rb - About 3 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 walk has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
Open

      def walk(data, parent_path, prefix, level, is_last)
        node = is_last ? LeafNode : Node

        case data
        when Hash
Severity: Minor
Found in lib/tty/tree/hash_walker.rb - About 3 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 walk has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def walk(data, parent_path, prefix, level, is_last)
        node = is_last ? LeafNode : Node

        case data
        when Hash
Severity: Minor
Found in lib/tty/tree/hash_walker.rb - About 1 hr to fix

    Method walk has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

          def walk(data, parent_path, prefix, level, is_last)
    Severity: Minor
    Found in lib/tty/tree/hash_walker.rb - About 35 mins to fix

      Method node has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def node(name, type = Node, &block)
            parent = @nodes_stack.empty? ? Node::ROOT : @nodes_stack.last
            level = [0, @nodes_stack.size - 1].max
            prefix = ':pipe' * level
            if parent.class == LeafNode
      Severity: Minor
      Found in lib/tty/tree.rb - About 35 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