Showing 34 of 54 total issues
Function formatMoney
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
var formatMoney = lib.formatMoney = function(number, symbol, precision, thousand, decimal, format) {
Function formatColumn
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
lib.formatColumn = function(list, symbol, precision, thousand, decimal, format) {
Method footer
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
def footer(sender, bank_account, vat_number, uid_number, vesr_included)
Method reactivate
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def reactivate(comments = nil)
unless state == 'canceled'
# Cancel original amount
bookings.build(:title => "Storno",
:comments => comments || "Reaktiviert",
- 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 build_bookings
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def build_bookings
todo_account = Account.find_by_code('1080')
booking = nil
rows.each do |row|
- 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 removable_line_items_attributes
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def removable_line_items_attributes
return [] unless params[:id]
Invoice.find(params[:id]).line_items.map do |line_item|
next if line_items_param.detect { |item| item[:id] == line_item.id }
{ id: line_item.id, _destroy: true }
- 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 set_by_date
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def set_by_date
return unless user_signed_in?
return if params[:years]
- 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 copy
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def copy(payment_period)
new_invoice = dup
# Rebuild positions
new_invoice.line_items = line_items.map{ |line_item| line_item.copy }
- 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 build_bookings
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def build_bookings
todo_account = Account.find_by_code('1080')
booking = nil
mt940.each do |line|
- 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
Avoid too many return
statements within this method. Open
return 0
Avoid too many return
statements within this method. Open
return false
Method addressee_attributes
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def addressee_attributes
return {} unless declared(params)[:type]
if create_debit_invoice?
{
customer_id: params[:address_id],
- 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 times_to_s
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def times_to_s
if times == 1
if quantity == "x"
s = ""
elsif quantity == "overall"
- 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 parse_date
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def self.parse_date(value)
if value.is_a?(String)
if value.match /.*-.*-.*/
return value
end
- 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"