MiniProfiler/rack-mini-profiler

View on GitHub

Showing 151 of 176 total issues

Avoid too many return statements within this method.
Open

          return serve_snapshot(env)
Severity: Major
Found in lib/mini_profiler.rb - About 30 mins to fix

    Avoid too many return statements within this method.
    Open

                return client_settings.handle_cookie(
                  text_result(message, status: status, headers: headers)
                )
    Severity: Major
    Found in lib/mini_profiler.rb - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

              return serve_profile_gc(env, client_settings)
      Severity: Major
      Found in lib/mini_profiler.rb - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                return tool_disabled_message(client_settings) if !advanced_debugging_enabled?
        Severity: Major
        Found in lib/mini_profiler.rb - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                    return serve_flamegraph(env)
          Severity: Major
          Found in lib/mini_profiler.rb - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                    return client_settings.handle_cookie(serve_file(env, file_name: file_name))
            Severity: Major
            Found in lib/mini_profiler.rb - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                      return client_settings.handle_cookie(dump_exceptions exceptions)
              Severity: Major
              Found in lib/mini_profiler.rb - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                        return client_settings.handle_cookie(help(client_settings, env))
                Severity: Major
                Found in lib/mini_profiler.rb - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                            return client_settings.handle_cookie(result) if result
                  Severity: Major
                  Found in lib/mini_profiler.rb - About 30 mins to fix

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

                      def object_space_stats
                        stats = Hash.new(0).compare_by_identity
                        ids = Hash.new.compare_by_identity
                    
                        @ignore << stats.__id__
                    Severity: Minor
                    Found in lib/mini_profiler/gc_profiler.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 move_custom has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                            def move_custom(type, custom, destination)
                              if index = self[:custom_timings][type]&.index(custom)
                                custom[:parent_timing_id] = destination[:id]
                                custom.parent = destination
                                self[:custom_timings][type].slice!(index)
                    Severity: Minor
                    Found in lib/mini_profiler/timer_struct/request.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