maartenvanvliet/moneybird

View on GitHub

Showing 33 of 33 total issues

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

  class Receipt
    include Moneybird::Resource
    extend Moneybird::Resource::ClassMethods

    has_attributes %i(
Severity: Major
Found in lib/moneybird/resource/documents/receipt.rb and 1 other location - About 2 hrs to fix
lib/moneybird/resource/documents/purchase_invoice.rb on lines 2..54

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 98.

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

  class PurchaseInvoice
    include Moneybird::Resource
    extend Moneybird::Resource::ClassMethods

    has_attributes %i(
Severity: Major
Found in lib/moneybird/resource/documents/purchase_invoice.rb and 1 other location - About 2 hrs to fix
lib/moneybird/resource/documents/receipt.rb on lines 2..54

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 98.

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

Class Administration has 21 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Administration
    include Moneybird::Resource
    extend Moneybird::Resource::ClassMethods

    has_attributes %i(
Severity: Minor
Found in lib/moneybird/resource/administration.rb - About 2 hrs to fix

    Cyclomatic complexity for attributes is too high. [7/6]
    Open

        def attributes
          self.class.attributes.inject({}) do |attributes, attribute|
            value = send(attribute)
            if !value.nil?
              if value.is_a?(Array) && value.first.respond_to?(:attributes)
    Severity: Minor
    Found in lib/moneybird/resource.rb by rubocop

    This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

    An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

    Method has_boolean_attributes has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

          def has_boolean_attributes(attributes)
            attributes.each do |attribute|
              define_method(attribute) do
                input = instance_variable_get('@' + attribute)
                if input.kind_of?(String)
    Severity: Minor
    Found in lib/moneybird/resource.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 attributes has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

        def attributes
          self.class.attributes.inject({}) do |attributes, attribute|
            value = send(attribute)
            if !value.nil?
              if value.is_a?(Array) && value.first.respond_to?(:attributes)
    Severity: Minor
    Found in lib/moneybird/resource.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 has_datetime_attributes has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

          def has_datetime_attributes(attributes)
            attributes.each do |attribute|
              define_method(attribute) do
                input = instance_variable_get('@' + attribute)
                if input.kind_of?(Time)
    Severity: Minor
    Found in lib/moneybird/resource.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

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

      class Receipt
        include Moneybird::Traits::AdministrationService
        include Moneybird::Traits::Service
        include Moneybird::Traits::Find
        include Moneybird::Traits::FindAll
    Severity: Major
    Found in lib/moneybird/service/documents/receipt.rb and 4 other locations - About 50 mins to fix
    lib/moneybird/service/documents/general_document.rb on lines 2..18
    lib/moneybird/service/documents/general_journal_document.rb on lines 2..18
    lib/moneybird/service/documents/purchase_invoice.rb on lines 2..18
    lib/moneybird/service/documents/typeless_document.rb on lines 2..18

    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 42.

    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 5 locations. Consider refactoring.
    Open

      class PurchaseInvoice
        include Moneybird::Traits::AdministrationService
        include Moneybird::Traits::Service
        include Moneybird::Traits::Find
        include Moneybird::Traits::FindAll
    Severity: Major
    Found in lib/moneybird/service/documents/purchase_invoice.rb and 4 other locations - About 50 mins to fix
    lib/moneybird/service/documents/general_document.rb on lines 2..18
    lib/moneybird/service/documents/general_journal_document.rb on lines 2..18
    lib/moneybird/service/documents/receipt.rb on lines 2..18
    lib/moneybird/service/documents/typeless_document.rb on lines 2..18

    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 42.

    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 5 locations. Consider refactoring.
    Open

      class TypelessDocument
        include Moneybird::Traits::AdministrationService
        include Moneybird::Traits::Service
        include Moneybird::Traits::Find
        include Moneybird::Traits::FindAll
    Severity: Major
    Found in lib/moneybird/service/documents/typeless_document.rb and 4 other locations - About 50 mins to fix
    lib/moneybird/service/documents/general_document.rb on lines 2..18
    lib/moneybird/service/documents/general_journal_document.rb on lines 2..18
    lib/moneybird/service/documents/purchase_invoice.rb on lines 2..18
    lib/moneybird/service/documents/receipt.rb on lines 2..18

    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 42.

    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 5 locations. Consider refactoring.
    Open

      class GeneralJournalDocument
        include Moneybird::Traits::AdministrationService
        include Moneybird::Traits::Service
        include Moneybird::Traits::Find
        include Moneybird::Traits::FindAll
    Severity: Major
    Found in lib/moneybird/service/documents/general_journal_document.rb and 4 other locations - About 50 mins to fix
    lib/moneybird/service/documents/general_document.rb on lines 2..18
    lib/moneybird/service/documents/purchase_invoice.rb on lines 2..18
    lib/moneybird/service/documents/receipt.rb on lines 2..18
    lib/moneybird/service/documents/typeless_document.rb on lines 2..18

    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 42.

    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 5 locations. Consider refactoring.
    Open

      class GeneralDocument
        include Moneybird::Traits::AdministrationService
        include Moneybird::Traits::Service
        include Moneybird::Traits::Find
        include Moneybird::Traits::FindAll
    Severity: Major
    Found in lib/moneybird/service/documents/general_document.rb and 4 other locations - About 50 mins to fix
    lib/moneybird/service/documents/general_journal_document.rb on lines 2..18
    lib/moneybird/service/documents/purchase_invoice.rb on lines 2..18
    lib/moneybird/service/documents/receipt.rb on lines 2..18
    lib/moneybird/service/documents/typeless_document.rb on lines 2..18

    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 42.

    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

      class RecurringSalesInvoice
        include Moneybird::Traits::AdministrationService
        include Moneybird::Traits::Service
        include Moneybird::Traits::Find
        include Moneybird::Traits::FindAll
    Severity: Minor
    Found in lib/moneybird/service/recurring_sales_invoice.rb and 1 other location - About 45 mins to fix
    lib/moneybird/service/estimate.rb on lines 2..18

    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 41.

    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

      class Estimate
        include Moneybird::Traits::AdministrationService
        include Moneybird::Traits::Service
        include Moneybird::Traits::Find
        include Moneybird::Traits::FindAll
    Severity: Minor
    Found in lib/moneybird/service/estimate.rb and 1 other location - About 45 mins to fix
    lib/moneybird/service/recurring_sales_invoice.rb on lines 2..18

    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 41.

    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 4 locations. Consider refactoring.
    Open

      class Identity
        include Moneybird::Traits::AdministrationService
        include Moneybird::Traits::Service
        include Moneybird::Traits::Find
        include Moneybird::Traits::FindAll
    Severity: Major
    Found in lib/moneybird/service/identity.rb and 3 other locations - About 40 mins to fix
    lib/moneybird/service/external_sales_invoice.rb on lines 2..17
    lib/moneybird/service/ledger_account.rb on lines 2..17
    lib/moneybird/service/product.rb on lines 2..17

    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 37.

    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 4 locations. Consider refactoring.
    Open

      class ExternalSalesInvoice
        include Moneybird::Traits::AdministrationService
        include Moneybird::Traits::Service
        include Moneybird::Traits::Find
        include Moneybird::Traits::FindAll
    Severity: Major
    Found in lib/moneybird/service/external_sales_invoice.rb and 3 other locations - About 40 mins to fix
    lib/moneybird/service/identity.rb on lines 2..17
    lib/moneybird/service/ledger_account.rb on lines 2..17
    lib/moneybird/service/product.rb on lines 2..17

    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 37.

    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 4 locations. Consider refactoring.
    Open

      class LedgerAccount
        include Moneybird::Traits::AdministrationService
        include Moneybird::Traits::Service
        include Moneybird::Traits::Find
        include Moneybird::Traits::FindAll
    Severity: Major
    Found in lib/moneybird/service/ledger_account.rb and 3 other locations - About 40 mins to fix
    lib/moneybird/service/external_sales_invoice.rb on lines 2..17
    lib/moneybird/service/identity.rb on lines 2..17
    lib/moneybird/service/product.rb on lines 2..17

    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 37.

    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 4 locations. Consider refactoring.
    Open

      class Product
        include Moneybird::Traits::AdministrationService
        include Moneybird::Traits::Service
        include Moneybird::Traits::Find
        include Moneybird::Traits::FindAll
    Severity: Major
    Found in lib/moneybird/service/product.rb and 3 other locations - About 40 mins to fix
    lib/moneybird/service/external_sales_invoice.rb on lines 2..17
    lib/moneybird/service/identity.rb on lines 2..17
    lib/moneybird/service/ledger_account.rb on lines 2..17

    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 37.

    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 3 locations. Consider refactoring.
    Open

      class GeneralJournalDocument
        include Moneybird::Resource
        extend Moneybird::Resource::ClassMethods
    
        has_attributes %i(
    Severity: Minor
    Found in lib/moneybird/resource/documents/general_journal_document.rb and 2 other locations - About 20 mins to fix
    lib/moneybird/resource/documents/typeless_document.rb on lines 2..23
    lib/moneybird/resource/invoice/details.rb on lines 2..23

    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 27.

    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 3 locations. Consider refactoring.
    Open

      class Details
        include Moneybird::Resource
        extend Moneybird::Resource::ClassMethods
    
        has_attributes %i(
    Severity: Minor
    Found in lib/moneybird/resource/invoice/details.rb and 2 other locations - About 20 mins to fix
    lib/moneybird/resource/documents/general_journal_document.rb on lines 2..23
    lib/moneybird/resource/documents/typeless_document.rb on lines 2..23

    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 27.

    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

    Severity
    Category
    Status
    Source
    Language