lighttroupe/luz

View on GitHub
gui/gui_list.rb

Summary

Maintainability
C
1 day
Test Coverage

Method each_with_positioning_vertical_within_clipping has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
Open

    def each_with_positioning_vertical_within_clipping
        final_spacing_y = distance_between_items

        with_translation(0.0, 0.5) {
            with_aspect_ratio_fix_y { |fix_y|
Severity: Minor
Found in gui/gui_list.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

Class GuiList has 22 methods (exceeds 20 allowed). Consider refactoring.
Open

class GuiList < GuiBox
    VELOCITY_PER_SCROLL = 3.0
    MAX_SCROLL_VELOCITY = 16.0
    VELOCITY_DAMPER = 0.7                    # TODO: setting

Severity: Minor
Found in gui/gui_list.rb - About 2 hrs to fix

    Method each_with_positioning_vertical_within_clipping has 36 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def each_with_positioning_vertical_within_clipping
            final_spacing_y = distance_between_items
    
            with_translation(0.0, 0.5) {
                with_aspect_ratio_fix_y { |fix_y|
    Severity: Minor
    Found in gui/gui_list.rb - About 1 hr to fix

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

          def gui_tick
              super
              if allow_scrolling?
                  starting_scroll = @scroll
      
      
      Severity: Minor
      Found in gui/gui_list.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

      There are no issues that match your filters.

      Category
      Status