houston/houston-core

View on GitHub

Showing 27 of 1,937 total issues

Avoid too many return statements within this method.
Open

    return "#{days / 7} weeks ago" if days < 63
Severity: Major
Found in app/helpers/application_helper.rb - About 30 mins to fix

    Avoid too many return statements within this method.
    Open

        return ">#{days / 365} years ago"
    Severity: Major
    Found in app/helpers/application_helper.rb - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

          return "#{days / 30} months ago" if days < 456
      Severity: Major
      Found in app/helpers/application_helper.rb - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

            return "#{days} days ago" if days < 21
        Severity: Major
        Found in app/helpers/application_helper.rb - About 30 mins to fix

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

              def host(*args)
                if args.any?
                  @host = args.first
          
                  if Rails.env.production?
          Severity: Minor
          Found in lib/houston/boot/configuration.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 format_duration has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

            def format_duration(seconds)
              if seconds.nil?
                return "&mdash;".html_safe
              elsif seconds < 1
                "#{(seconds * 1000).floor}ms"
          Severity: Minor
          Found in app/helpers/application_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

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

            def subscribed
              events = [params[:event]] if params.key?(:event)
              events = params[:events] if params.key?(:events)
          
              events.each do |event|
          Severity: Minor
          Found in app/channels/events_channel.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