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
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"
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
- Read upRead up
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 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
- Read upRead up
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
- Read upRead up
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?
- Read upRead up
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
- Read upRead up
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?
- Read upRead up
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? :[]
- Read upRead up
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"