ioquatix/build-text

View on GitHub

Showing 6 of 6 total issues

Method lcs has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

            def self.lcs(x, y)
                # Create the lcs matrix:
                m = Array.new(x.length + 1) do
                    Array.new(y.length + 1) do
                        LCSNode.new(nil, nil)
Severity: Minor
Found in lib/build/text/merge.rb - About 1 hr 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 lcs has 32 lines of code (exceeds 25 allowed). Consider refactoring.
Open

            def self.lcs(x, y)
                # Create the lcs matrix:
                m = Array.new(x.length + 1) do
                    Array.new(y.length + 1) do
                        LCSNode.new(nil, nil)
Severity: Minor
Found in lib/build/text/merge.rb - About 1 hr to fix

    Method apply has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

                    def apply(text, level = 0)
                        open_pattern = line_pattern
                        close_pattern = line_pattern('/')
    
                        lines = text.each_line
    Severity: Minor
    Found in lib/build/text/substitutions.rb - About 1 hr 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 combine has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

                def self.combine(old_text, new_text)
                    lcs = lcs(old_text, new_text)
                    changes = []
                    
                    n = 0; o = 0; l = 0
    Severity: Minor
    Found in lib/build/text/merge.rb - About 1 hr to fix

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

                  def self.combine(old_text, new_text)
                      lcs = lcs(old_text, new_text)
                      changes = []
                      
                      n = 0; o = 0; l = 0
      Severity: Minor
      Found in lib/build/text/merge.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 levenshtein_distance has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

                  def self.levenshtein_distance(s, t)
                      n = s.length
                      m = t.length
      
                      return m if n == 0
      Severity: Minor
      Found in lib/build/text/merge.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