icelab/formalist

View on GitHub

Showing 3 of 7 total issues

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

      def deep_simplify(value)
        case value
          when Hash
            value.each_with_object({}) { |(k,v), output| output[k] = deep_simplify(v) }
          when Array
Severity: Minor
Found in lib/formalist/element/attributes.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 wrap_lists has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

        def wrap_lists(nodes)
          chunked = nodes.chunk do |node|
            type, content = node

            if type == "block"
Severity: Minor
Found in lib/formalist/rich_text/rendering/html_compiler.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 add_element has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    def add_element(type, *args, &block)
      element_name = args.shift unless args.first.is_a?(Hash)
      element_attrs = args.last.is_a?(Hash) ? args.last : {}

      if element_name && elements.any? { |element| element.name == element_name }
Severity: Minor
Found in lib/formalist/definition.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