textgoeshere/nyan

View on GitHub

Showing 3 of 3 total issues

Method write_to_buffer has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
Open

    def write_to_buffer(sprite)
      sprite.lines.each_with_index do |row, i|
        @last_char_with_colour = nil
        y = sprite.y + i
        next unless y.between?(top, bottom)
Severity: Minor
Found in lib/nyan/stage.rb - About 2 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 initialize has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    def initialize(options = {})
      @framerate = options.fetch(:framerate, 0.09)
            
      @stage    = Stage.new(options.fetch(:stage, {}))
      @rainbow  = Sprite.new(:x => 0, :y => 17, :z => 1, :frames => Nyan::Rainbow.to_frames)
Severity: Minor
Found in lib/nyan/flight.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 frame has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    def self.frame(is_peak = true)
      frame_rows = Array.new(FRAME_HEIGHT + 1) { String.new }
      
      SECTIONS.times do
        this_slice = SLICE.dup
Severity: Minor
Found in lib/nyan/sprites/rainbow.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

Severity
Category
Status
Source
Language