piotrmurach/tty-table

View on GitHub

Showing 7 of 11 total issues

Class Table has 32 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Table
    include Comparable, Enumerable, Validatable
    extend Forwardable

    # The table header
Severity: Minor
Found in lib/tty/table.rb - About 4 hrs to fix

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

        def column(index)
          index_unknown = index.is_a?(Integer) && (index >= columns_size || index < 0)
          if block_given?
            return self if index_unknown
            rows.map { |row| yield row[index] }
    Severity: Minor
    Found in lib/tty/table.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 coerce has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def coerce(rows)
          coerced_rows = []
          Array(rows).each do |row|
            if row == Border::SEPARATOR
              separators << coerced_rows.length - (header ? 0 : 1)
    Severity: Minor
    Found in lib/tty/table.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

    Method shrink has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def shrink
            column_size = table.columns_size
            ratio       = ((natural_width - renderer.width) / column_size.to_f).ceil
    
            widths = (0...column_size).reduce([]) do |lengths, col|
    Severity: Minor
    Found in lib/tty/table/column_constraint.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 assert_border_class has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def assert_border_class(border_class)
            return unless border_class
            unless border_class <= TTY::Table::Border
              raise TypeError,
                    "#{border_class} should inherit from TTY::Table::Border"
    Severity: Minor
    Found in lib/tty/table/renderer.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 enforce has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def enforce
            assert_minimum_width
            padding = renderer.padding
    
            if natural_width <= renderer.width
    Severity: Minor
    Found in lib/tty/table/column_constraint.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 validate_options! has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def validate_options!(options)
            header = options[:header]
            rows   = options[:rows]
    
            if header && (!header.is_a?(Array) || header.empty?)
    Severity: Minor
    Found in lib/tty/table/validatable.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