k0kubun/hamlit

View on GitHub
lib/hamlit/parser/haml_helpers.rb

Summary

Maintainability
B
6 hrs
Test Coverage

Method haml_tag has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
Open

    def haml_tag(name, *rest, &block)
      ret = ErrorReturn.new("haml_tag")

      text = rest.shift.to_s unless [Symbol, Hash, NilClass].any? {|t| rest.first.is_a? t}
      flags = []
Severity: Minor
Found in lib/hamlit/parser/haml_helpers.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 haml_tag has 52 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def haml_tag(name, *rest, &block)
      ret = ErrorReturn.new("haml_tag")

      text = rest.shift.to_s unless [Symbol, Hash, NilClass].any? {|t| rest.first.is_a? t}
      flags = []
Severity: Major
Found in lib/hamlit/parser/haml_helpers.rb - About 2 hrs to fix

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

        def haml_internal_concat(text = "", newline = true, indent = true)
          if haml_buffer.tabulation == 0
            haml_buffer.buffer << "#{text}#{"\n" if newline}"
          else
            haml_buffer.buffer << %[#{haml_indent if indent}#{text.to_s.gsub("\n", "\n#{haml_indent}")}#{"\n" if newline}]
    Severity: Minor
    Found in lib/hamlit/parser/haml_helpers.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 capture_haml has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        def capture_haml(*args, &block)
          buffer = eval('if defined? _hamlout then _hamlout else nil end', block.binding) || haml_buffer
          with_haml_buffer(buffer) do
            position = haml_buffer.buffer.length
    
    
    Severity: Minor
    Found in lib/hamlit/parser/haml_helpers.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

    There are no issues that match your filters.

    Category
    Status