getsentry/raven-ruby

View on GitHub
sentry-ruby/lib/sentry/scope.rb

Summary

Maintainability
B
6 hrs
Test Coverage

Class Scope has 34 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Scope
    include ArgumentCheckingHelper

    ATTRIBUTES = [
      :transaction_names,
Severity: Minor
Found in sentry-ruby/lib/sentry/scope.rb - About 4 hrs to fix

    Method apply_to_event has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

        def apply_to_event(event, hint = nil)
          unless event.is_a?(CheckInEvent)
            event.tags = tags.merge(event.tags)
            event.user = user.merge(event.user)
            event.extra = extra.merge(event.extra)
    Severity: Minor
    Found in sentry-ruby/lib/sentry/scope.rb - About 1 hr 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 update_from_options has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def update_from_options(
          contexts: nil,
          extra: nil,
          tags: nil,
          user: nil,
    Severity: Minor
    Found in sentry-ruby/lib/sentry/scope.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

    There are no issues that match your filters.

    Category
    Status