dgroup/lazylead

View on GitHub

Showing 9 of 15 total issues

Class Issue has 26 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Issue
    def initialize(issue, jira)
      @issue = issue
      @jira = jira
    end
Severity: Minor
Found in lib/lazylead/system/jira.rb - About 3 hrs to fix

    File jira.rb has 252 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require "jira-ruby"
    require "forwardable"
    require_relative "../salt"
    require_relative "../opts"
    require_relative "../log"
    Severity: Minor
    Found in lib/lazylead/system/jira.rb - About 2 hrs to fix

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

          def pairs(words, text)
            snippets = [[]]
            words.each_with_index do |e, i|
              next unless e.start_with? text
              pair = snippets.last
      Severity: Minor
      Found in lib/lazylead/task/accuracy/stacktrace.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

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

            def diff(expected, actual)
              diff = {}
              actual.each_with_object(diff) do |a, d|
                k = a.first
                v = a.last
      Severity: Minor
      Found in lib/lazylead/task/propagate_down.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

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

            def exec
              retries ||= 0
              @orig.exec
              @orig
            rescue StandardError => e
      Severity: Minor
      Found in lib/lazylead/model.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

      Method exec has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

            def exec
              Logging.mdc["tid"] = "task #{id}"
              @log.debug "'#{name}' is started."
              @log.warn "No postman, stub is used." unless props.key? "postman"
              @log.warn "No team." if team.nil?
      Severity: Minor
      Found in lib/lazylead/model.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 schedule_tasks has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

            def schedule_tasks
              todo = ORM::Task.where(enabled: "true")
              if todo.empty?
                @log.warn "ll-001: No tasks found."
              else
      Severity: Minor
      Found in lib/lazylead/cli/app.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 fields has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def fields
            return {} if @issue.nil?
            return {} unless @issue.respond_to? :fields
            return {} if @issue.fields.nil?
            return {} unless @issue.fields.respond_to? :[]
      Severity: Minor
      Found in lib/lazylead/system/jira.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 sliced has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def sliced(delim, *keys)
            return [] if keys.empty?
            key = keys.detect { |k| key? k }
            val = to_h[key]
            return [] if val.nil? || val.blank?
      Severity: Minor
      Found in lib/lazylead/opts.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