delonnewman/dragnet

View on GitHub
app/helpers/htmx_helper.rb

Summary

Maintainability
A
25 mins
Test Coverage

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

  def button_to(name = nil, options = nil, html_options = EMPTY_HASH, &block)
    htmx_attr_keys = options.is_a?(Hash) ? HTMX_ONLY_ATTRS & options.keys : EMPTY_ARRAY
    return orig_button_to(name, options, html_options, &block) if htmx_attr_keys.empty?

    html_options, options = options, name if block_given?
Severity: Minor
Found in app/helpers/htmx_helper.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

Final newline missing.
Open

end
Severity: Minor
Found in app/helpers/htmx_helper.rb by rubocop

Looks for trailing blank lines and a final newline in the source code.

Example: EnforcedStyle: final_newline (default)

# `final_newline` looks for one newline at the end of files.

# bad
class Foo; end

# EOF

# bad
class Foo; end # EOF

# good
class Foo; end
# EOF

Example: EnforcedStyle: finalblankline

# `final_blank_line` looks for one blank line followed by a new line
# at the end of files.

# bad
class Foo; end
# EOF

# bad
class Foo; end # EOF

# good
class Foo; end

# EOF

There are no issues that match your filters.

Category
Status