AlexWayfer/formalism-r18n_errors

View on GitHub

Showing 5 of 7 total issues

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

            def validate_range_entry(validation_field, range)
                return unless field_changed?(validation_field)

                value = public_send(validation_field).to_f

Severity: Minor
Found in lib/formalism/r18n_errors/validation_helpers.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 validate_uuid has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

            def validate_uuid(*validation_fields)
                valid = true
                validation_fields.flatten.each do |validation_field|
                    next unless field_changed?(validation_field)
                    next if /\A\h{8}-\h{4}-\h{4}-\h{4}-\h{12}\z/.match? public_send(validation_field)
Severity: Minor
Found in lib/formalism/r18n_errors/validation_helpers.rb - About 35 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 validate_email has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

            def validate_email(*validation_fields)
                valid = true
                validation_fields.flatten.each do |validation_field|
                    next unless field_changed?(validation_field)
                    next if EmailAddress.valid? public_send(validation_field)
Severity: Minor
Found in lib/formalism/r18n_errors/validation_helpers.rb - About 35 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 validate_provision has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

            def validate_provision(*validation_fields, error_key: :not_provided)
                valid = true
                validation_fields.flatten.each do |validation_field|
                    next unless field_changed?(validation_field)
                    next if field_valid?(validation_field)
Severity: Minor
Found in lib/formalism/r18n_errors/validation_helpers.rb - About 35 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 validate_uniqueness has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

            def validate_uniqueness(*fields_combinations)
                valid = true
                fields_combinations.each do |*fields_combination|
                    fields_combination.flatten!

Severity: Minor
Found in lib/formalism/r18n_errors/validation_helpers.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