svenyurgensson/parametron

View on GitHub

Showing 6 of 8 total issues

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

  def validate!(obj, params)
    obj.validation_error_cause = []
    normalized_param_keys = params.keys.map(&:to_s).sort
    exceed_params = normalized_param_keys - valid_keys

Severity: Minor
Found in lib/parametron/params_validator.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 _cast! has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

  def _cast!(params)
    new_par = params.dup
    _validators_list.each do |v|
      next unless v.cast
      key = v.name.to_sym
Severity: Minor
Found in lib/parametron.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 _set_defaults! has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

  def _set_defaults!(params)
    new_par = params.dup
    _validators_list.each do |v|
      if new_par[v.name].nil? && new_par[v.name.to_sym].nil?
        case v.default
Severity: Minor
Found in lib/parametron.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 validate! has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def validate!(obj, params)
    obj.validation_error_cause = []
    normalized_param_keys = params.keys.map(&:to_s).sort
    exceed_params = normalized_param_keys - valid_keys

Severity: Minor
Found in lib/parametron/params_validator.rb - About 1 hr to fix

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

        def method_added(name)
          return if name != @_method_name or instance_variable_get(:"@_METHOD_#{name}_WRAPPED")
          instance_variable_set(:"@_METHOD_#{name}_WRAPPED", true)
          original = instance_method(name.to_sym)
    
    
    Severity: Minor
    Found in lib/parametron.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 initialize has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def initialize(name, default, validator, as, cast)
    Severity: Minor
    Found in lib/parametron/params_validator.rb - About 35 mins to fix
      Severity
      Category
      Status
      Source
      Language