metanorma/isodoc

View on GitHub
lib/isodoc/function/table.rb

Summary

Maintainability
A
2 hrs
Test Coverage

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

      def make_tr_attr(cell, row, totalrows, header, bordered)
        style = cell.name == "th" ? "font-weight:bold;" : ""
        cell["align"] and style += "text-align:#{cell['align']};"
        cell["valign"] and style += "vertical-align:#{cell['valign']};"
        rowmax = cell["rowspan"] ? row + cell["rowspan"].to_i - 1 : row
Severity: Minor
Found in lib/isodoc/function/table.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 make_tr_attr_style has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

      def make_tr_attr_style(row, rowmax, totalrows, _header, bordered)
Severity: Minor
Found in lib/isodoc/function/table.rb - About 35 mins to fix

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

          def make_tr_attr(cell, row, totalrows, header, bordered)
    Severity: Minor
    Found in lib/isodoc/function/table.rb - About 35 mins to fix

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

            def tr_parse(node, out, ord, totalrows, header)
      Severity: Minor
      Found in lib/isodoc/function/table.rb - About 35 mins to fix

        There are no issues that match your filters.

        Category
        Status