sanger/sequencescape

View on GitHub
app/helpers/submissions_helper.rb

Summary

Maintainability
A
1 hr
Test Coverage
C
75%

Complex method SubmissionsHelper#submission_status_message (34.1)
Open

  def submission_status_message(submission) # rubocop:todo Metrics/CyclomaticComplexity
    case submission.state
    when 'building'
      display_user_guide(
        'This submission is still open for editing, further orders can still be added...',
Severity: Minor
Found in app/helpers/submissions_helper.rb by flog

Flog calculates the ABC score for methods. The ABC score is based on assignments, branches (method calls), and conditions.

You can read more about ABC metrics or the flog tool

Method submission_status_message has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def submission_status_message(submission) # rubocop:todo Metrics/CyclomaticComplexity
    case submission.state
    when 'building'
      display_user_guide(
        'This submission is still open for editing, further orders can still be added...',
Severity: Minor
Found in app/helpers/submissions_helper.rb - About 1 hr to fix

    SubmissionsHelper#field_number_tag is controlled by argument 'enforce_required'
    Open

          required: enforce_required && field_info.required
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Control Parameter is a special case of Control Couple

    Example

    A simple example would be the "quoted" parameter in the following method:

    def write(quoted)
      if quoted
        write_quoted @value
      else
        write_unquoted @value
      end
    end

    Fixing those problems is out of the scope of this document but an easy solution could be to remove the "write" method alltogether and to move the calls to "writequoted" / "writeunquoted" in the initial caller of "write".

    SubmissionsHelper#submission_status_message has approx 10 statements
    Open

      def submission_status_message(submission) # rubocop:todo Metrics/CyclomaticComplexity
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    A method with Too Many Statements is any method that has a large number of lines.

    Too Many Statements warns about any method that has more than 5 statements. Reek's smell detector for Too Many Statements counts +1 for every simple statement in a method and +1 for every statement within a control structure (if, else, case, when, for, while, until, begin, rescue) but it doesn't count the control structure itself.

    So the following method would score +6 in Reek's statement-counting algorithm:

    def parse(arg, argv, &error)
      if !(val = arg) and (argv.empty? or /\A-/ =~ (val = argv[0]))
        return nil, block, nil                                         # +1
      end
      opt = (val = parse_arg(val, &error))[1]                          # +2
      val = conv_arg(*val)                                             # +3
      if opt and !arg
        argv.shift                                                     # +4
      else
        val[0] = nil                                                   # +5
      end
      val                                                              # +6
    end

    (You might argue that the two assigments within the first @if@ should count as statements, and that perhaps the nested assignment should count as +2.)

    SubmissionsHelper#field_input_tag has boolean parameter 'enforce_required'
    Open

      def field_input_tag(field_info, values: {}, name_format: '%s', enforce_required: true)
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Boolean Parameter is a special case of Control Couple, where a method parameter is defaulted to true or false. A Boolean Parameter effectively permits a method's caller to decide which execution path to take. This is a case of bad cohesion. You're creating a dependency between methods that is not really necessary, thus increasing coupling.

    Example

    Given

    class Dummy
      def hit_the_switch(switch = true)
        if switch
          puts 'Hitting the switch'
          # do other things...
        else
          puts 'Not hitting the switch'
          # do other things...
        end
      end
    end

    Reek would emit the following warning:

    test.rb -- 3 warnings:
      [1]:Dummy#hit_the_switch has boolean parameter 'switch' (BooleanParameter)
      [2]:Dummy#hit_the_switch is controlled by argument switch (ControlParameter)

    Note that both smells are reported, Boolean Parameter and Control Parameter.

    Getting rid of the smell

    This is highly dependent on your exact architecture, but looking at the example above what you could do is:

    • Move everything in the if branch into a separate method
    • Move everything in the else branch into a separate method
    • Get rid of the hit_the_switch method alltogether
    • Make the decision what method to call in the initial caller of hit_the_switch

    SubmissionsHelper#field_selection_tag has 4 parameters
    Open

      def field_selection_tag(request_options, field_info, name_format, enforce_required)
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    A Long Parameter List occurs when a method has a lot of parameters.

    Example

    Given

    class Dummy
      def long_list(foo,bar,baz,fling,flung)
        puts foo,bar,baz,fling,flung
      end
    end

    Reek would report the following warning:

    test.rb -- 1 warning:
      [2]:Dummy#long_list has 5 parameters (LongParameterList)

    A common solution to this problem would be the introduction of parameter objects.

    SubmissionsHelper#field_number_tag refers to 'field_info' more than self (maybe move it to another class?)
    Open

          name_format % field_info.key,
          request_options[field_info.key] || field_info.default_value,
          class: 'required form-control',
          required: enforce_required && field_info.required
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Feature Envy occurs when a code fragment references another object more often than it references itself, or when several clients do the same series of manipulations on a particular type of object.

    Feature Envy reduces the code's ability to communicate intent: code that "belongs" on one class but which is located in another can be hard to find, and may upset the "System of Names" in the host class.

    Feature Envy also affects the design's flexibility: A code fragment that is in the wrong class creates couplings that may not be natural within the application's domain, and creates a loss of cohesion in the unwilling host class.

    Feature Envy often arises because it must manipulate other objects (usually its arguments) to get them into a useful form, and one force preventing them (the arguments) doing this themselves is that the common knowledge lives outside the arguments, or the arguments are of too basic a type to justify extending that type. Therefore there must be something which 'knows' about the contents or purposes of the arguments. That thing would have to be more than just a basic type, because the basic types are either containers which don't know about their contents, or they are single objects which can't capture their relationship with their fellows of the same type. So, this thing with the extra knowledge should be reified into a class, and the utility method will most likely belong there.

    Example

    Running Reek on:

    class Warehouse
      def sale_price(item)
        (item.price - item.rebate) * @vat
      end
    end

    would report:

    Warehouse#total_price refers to item more than self (FeatureEnvy)

    since this:

    (item.price - item.rebate)

    belongs to the Item class, not the Warehouse.

    SubmissionsHelper#asset_group_select refers to 'asset_groups' more than self (maybe move it to another class?)
    Open

          case asset_groups.size
          when 0
            'There are no Asset Groups associcated with this Study'
          else
            'Please select an asset group for this order.'
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Feature Envy occurs when a code fragment references another object more often than it references itself, or when several clients do the same series of manipulations on a particular type of object.

    Feature Envy reduces the code's ability to communicate intent: code that "belongs" on one class but which is located in another can be hard to find, and may upset the "System of Names" in the host class.

    Feature Envy also affects the design's flexibility: A code fragment that is in the wrong class creates couplings that may not be natural within the application's domain, and creates a loss of cohesion in the unwilling host class.

    Feature Envy often arises because it must manipulate other objects (usually its arguments) to get them into a useful form, and one force preventing them (the arguments) doing this themselves is that the common knowledge lives outside the arguments, or the arguments are of too basic a type to justify extending that type. Therefore there must be something which 'knows' about the contents or purposes of the arguments. That thing would have to be more than just a basic type, because the basic types are either containers which don't know about their contents, or they are single objects which can't capture their relationship with their fellows of the same type. So, this thing with the extra knowledge should be reified into a class, and the utility method will most likely belong there.

    Example

    Running Reek on:

    class Warehouse
      def sale_price(item)
        (item.price - item.rebate) * @vat
      end
    end

    would report:

    Warehouse#total_price refers to item more than self (FeatureEnvy)

    since this:

    (item.price - item.rebate)

    belongs to the Item class, not the Warehouse.

    SubmissionsHelper#field_selection_tag refers to 'field_info' more than self (maybe move it to another class?)
    Open

          name_format % field_info.key,
          options_for_select(field_info.selection.map(&:to_s), request_options[field_info.key]),
          class: 'custom-select',
          required: enforce_required && field_info.required,
          read_only: field_info.selection.size == 1
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Feature Envy occurs when a code fragment references another object more often than it references itself, or when several clients do the same series of manipulations on a particular type of object.

    Feature Envy reduces the code's ability to communicate intent: code that "belongs" on one class but which is located in another can be hard to find, and may upset the "System of Names" in the host class.

    Feature Envy also affects the design's flexibility: A code fragment that is in the wrong class creates couplings that may not be natural within the application's domain, and creates a loss of cohesion in the unwilling host class.

    Feature Envy often arises because it must manipulate other objects (usually its arguments) to get them into a useful form, and one force preventing them (the arguments) doing this themselves is that the common knowledge lives outside the arguments, or the arguments are of too basic a type to justify extending that type. Therefore there must be something which 'knows' about the contents or purposes of the arguments. That thing would have to be more than just a basic type, because the basic types are either containers which don't know about their contents, or they are single objects which can't capture their relationship with their fellows of the same type. So, this thing with the extra knowledge should be reified into a class, and the utility method will most likely belong there.

    Example

    Running Reek on:

    class Warehouse
      def sale_price(item)
        (item.price - item.rebate) * @vat
      end
    end

    would report:

    Warehouse#total_price refers to item more than self (FeatureEnvy)

    since this:

    (item.price - item.rebate)

    belongs to the Item class, not the Warehouse.

    SubmissionsHelper#field_text_tag refers to 'field_info' more than self (maybe move it to another class?)
    Open

          name_format % field_info.key,
          request_options[field_info.key] || field_info.default_value,
          class: 'required form-control',
          required: enforce_required && field_info.required
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Feature Envy occurs when a code fragment references another object more often than it references itself, or when several clients do the same series of manipulations on a particular type of object.

    Feature Envy reduces the code's ability to communicate intent: code that "belongs" on one class but which is located in another can be hard to find, and may upset the "System of Names" in the host class.

    Feature Envy also affects the design's flexibility: A code fragment that is in the wrong class creates couplings that may not be natural within the application's domain, and creates a loss of cohesion in the unwilling host class.

    Feature Envy often arises because it must manipulate other objects (usually its arguments) to get them into a useful form, and one force preventing them (the arguments) doing this themselves is that the common knowledge lives outside the arguments, or the arguments are of too basic a type to justify extending that type. Therefore there must be something which 'knows' about the contents or purposes of the arguments. That thing would have to be more than just a basic type, because the basic types are either containers which don't know about their contents, or they are single objects which can't capture their relationship with their fellows of the same type. So, this thing with the extra knowledge should be reified into a class, and the utility method will most likely belong there.

    Example

    Running Reek on:

    class Warehouse
      def sale_price(item)
        (item.price - item.rebate) * @vat
      end
    end

    would report:

    Warehouse#total_price refers to item more than self (FeatureEnvy)

    since this:

    (item.price - item.rebate)

    belongs to the Item class, not the Warehouse.

    SubmissionsHelper#field_number_tag has 4 parameters
    Open

      def field_number_tag(request_options, field_info, name_format, enforce_required)
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    A Long Parameter List occurs when a method has a lot of parameters.

    Example

    Given

    class Dummy
      def long_list(foo,bar,baz,fling,flung)
        puts foo,bar,baz,fling,flung
      end
    end

    Reek would report the following warning:

    test.rb -- 1 warning:
      [2]:Dummy#long_list has 5 parameters (LongParameterList)

    A common solution to this problem would be the introduction of parameter objects.

    SubmissionsHelper#field_selection_tag is controlled by argument 'enforce_required'
    Open

          required: enforce_required && field_info.required,
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Control Parameter is a special case of Control Couple

    Example

    A simple example would be the "quoted" parameter in the following method:

    def write(quoted)
      if quoted
        write_quoted @value
      else
        write_unquoted @value
      end
    end

    Fixing those problems is out of the scope of this document but an easy solution could be to remove the "write" method alltogether and to move the calls to "writequoted" / "writeunquoted" in the initial caller of "write".

    SubmissionsHelper#field_text_tag is controlled by argument 'enforce_required'
    Open

          required: enforce_required && field_info.required
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Control Parameter is a special case of Control Couple

    Example

    A simple example would be the "quoted" parameter in the following method:

    def write(quoted)
      if quoted
        write_quoted @value
      else
        write_unquoted @value
      end
    end

    Fixing those problems is out of the scope of this document but an easy solution could be to remove the "write" method alltogether and to move the calls to "writequoted" / "writeunquoted" in the initial caller of "write".

    SubmissionsHelper#field_input_tag has 4 parameters
    Open

      def field_input_tag(field_info, values: {}, name_format: '%s', enforce_required: true)
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    A Long Parameter List occurs when a method has a lot of parameters.

    Example

    Given

    class Dummy
      def long_list(foo,bar,baz,fling,flung)
        puts foo,bar,baz,fling,flung
      end
    end

    Reek would report the following warning:

    test.rb -- 1 warning:
      [2]:Dummy#long_list has 5 parameters (LongParameterList)

    A common solution to this problem would be the introduction of parameter objects.

    SubmissionsHelper#field_text_tag has 4 parameters
    Open

      def field_text_tag(request_options, field_info, name_format, enforce_required)
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    A Long Parameter List occurs when a method has a lot of parameters.

    Example

    Given

    class Dummy
      def long_list(foo,bar,baz,fling,flung)
        puts foo,bar,baz,fling,flung
      end
    end

    Reek would report the following warning:

    test.rb -- 1 warning:
      [2]:Dummy#long_list has 5 parameters (LongParameterList)

    A common solution to this problem would be the introduction of parameter objects.

    SubmissionsHelper#order_input_tag is controlled by argument 'order'
    Open

        request_options = order&.request_options || {}
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Control Parameter is a special case of Control Couple

    Example

    A simple example would be the "quoted" parameter in the following method:

    def write(quoted)
      if quoted
        write_quoted @value
      else
        write_unquoted @value
      end
    end

    Fixing those problems is out of the scope of this document but an easy solution could be to remove the "write" method alltogether and to move the calls to "writequoted" / "writeunquoted" in the initial caller of "write".

    SubmissionsHelper#order_input_label refers to 'field_info' more than self (maybe move it to another class?)
    Open

        label('submission[order_params]', field_info.key, field_info.display_name, class: 'form-label')
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Feature Envy occurs when a code fragment references another object more often than it references itself, or when several clients do the same series of manipulations on a particular type of object.

    Feature Envy reduces the code's ability to communicate intent: code that "belongs" on one class but which is located in another can be hard to find, and may upset the "System of Names" in the host class.

    Feature Envy also affects the design's flexibility: A code fragment that is in the wrong class creates couplings that may not be natural within the application's domain, and creates a loss of cohesion in the unwilling host class.

    Feature Envy often arises because it must manipulate other objects (usually its arguments) to get them into a useful form, and one force preventing them (the arguments) doing this themselves is that the common knowledge lives outside the arguments, or the arguments are of too basic a type to justify extending that type. Therefore there must be something which 'knows' about the contents or purposes of the arguments. That thing would have to be more than just a basic type, because the basic types are either containers which don't know about their contents, or they are single objects which can't capture their relationship with their fellows of the same type. So, this thing with the extra knowledge should be reified into a class, and the utility method will most likely belong there.

    Example

    Running Reek on:

    class Warehouse
      def sale_price(item)
        (item.price - item.rebate) * @vat
      end
    end

    would report:

    Warehouse#total_price refers to item more than self (FeatureEnvy)

    since this:

    (item.price - item.rebate)

    belongs to the Item class, not the Warehouse.

    SubmissionsHelper#field_number_tag calls 'field_info.key' 2 times
    Open

          name_format % field_info.key,
          request_options[field_info.key] || field_info.default_value,
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    SubmissionsHelper#field_text_tag calls 'field_info.key' 2 times
    Open

          name_format % field_info.key,
          request_options[field_info.key] || field_info.default_value,
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    SubmissionsHelper#field_input_tag calls 'field_text_tag(values, field_info, name_format, enforce_required)' 2 times
    Open

          field_text_tag(values, field_info, name_format, enforce_required)
        when 'Numeric'
          field_number_tag(values, field_info, name_format, enforce_required)
          # Fall back to a text field
        else
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    SubmissionsHelper#field_selection_tag calls 'field_info.selection' 2 times
    Open

          options_for_select(field_info.selection.map(&:to_s), request_options[field_info.key]),
          class: 'custom-select',
          required: enforce_required && field_info.required,
          read_only: field_info.selection.size == 1
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    SubmissionsHelper#field_selection_tag calls 'field_info.key' 2 times
    Open

          name_format % field_info.key,
          options_for_select(field_info.selection.map(&:to_s), request_options[field_info.key]),
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    SubmissionsHelper#submission_status_message calls 'edit_submission_path(submission)' 2 times
    Open

            edit_submission_path(submission)
          ) + button_to('Edit Submission', edit_submission_path(submission), method: :get, class: 'button')
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    SubmissionsHelper takes parameters ['enforce_required', 'field_info', 'name_format', 'request_options'] to 3 methods
    Open

      def field_selection_tag(request_options, field_info, name_format, enforce_required)
        select_tag(
          name_format % field_info.key,
          options_for_select(field_info.selection.map(&:to_s), request_options[field_info.key]),
          class: 'custom-select',
    Severity: Minor
    Found in app/helpers/submissions_helper.rb by reek

    In general, a Data Clump occurs when the same two or three items frequently appear together in classes and parameter lists, or when a group of instance variable names start or end with similar substrings.

    The recurrence of the items often means there is duplicate code spread around to handle them. There may be an abstraction missing from the code, making the system harder to understand.

    Example

    Given

    class Dummy
      def x(y1,y2); end
      def y(y1,y2); end
      def z(y1,y2); end
    end

    Reek would emit the following warning:

    test.rb -- 1 warning:
      [2, 3, 4]:Dummy takes parameters [y1, y2] to 3 methods (DataClump)

    A possible way to fix this problem (quoting from Martin Fowler):

    The first step is to replace data clumps with objects and use the objects whenever you see them. An immediate benefit is that you'll shrink some parameter lists. The interesting stuff happens as you begin to look for behavior to move into the new objects.

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

      def studies_select(form, studies) # rubocop:todo Metrics/MethodLength
        prompt =
          case studies.count
          when 0
            'You are not managing any Studies at this time'
    Severity: Minor
    Found in app/helpers/submissions_helper.rb and 1 other location - About 15 mins to fix
    app/helpers/submissions_helper.rb on lines 52..68

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 25.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

      def projects_select(form, projects) # rubocop:todo Metrics/MethodLength
        prompt =
          case projects.count
          when 0
            'There are no valid projects available'
    Severity: Minor
    Found in app/helpers/submissions_helper.rb and 1 other location - About 15 mins to fix
    app/helpers/submissions_helper.rb on lines 32..49

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 25.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    There are no issues that match your filters.

    Category
    Status