dsi-icl/optimise

View on GitHub

Showing 1,390 of 1,390 total issues

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

        case 18:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
Severity: Major
Found in packages/optimise-core/src/db/patient_demographic.table.js and 23 other locations - About 2 hrs to fix
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

        case 16:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
Severity: Major
Found in packages/optimise-core/src/db/patient_pregnancy.table.js and 23 other locations - About 2 hrs to fix
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

        case 18:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

        case 17:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
Severity: Major
Found in packages/optimise-core/src/db/clinical_events.table.js and 23 other locations - About 2 hrs to fix
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

        case 18:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
Severity: Major
Found in packages/optimise-core/src/db/patient_pii.table.js and 23 other locations - About 2 hrs to fix
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

        case 17:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
Severity: Major
Found in packages/optimise-core/src/db/patient_diagnosis.table.js and 23 other locations - About 2 hrs to fix
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

        case 17:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
Severity: Major
Found in packages/optimise-core/src/db/patient_demographic.table.js and 23 other locations - About 2 hrs to fix
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

        case 16:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
Severity: Major
Found in packages/optimise-core/src/db/patient_pii.table.js and 23 other locations - About 2 hrs to fix
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

        case 17:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
Severity: Major
Found in packages/optimise-core/src/db/patient_pii.table.js and 23 other locations - About 2 hrs to fix
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

        case 18:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
Severity: Major
Found in packages/optimise-core/src/db/visits.table.js and 23 other locations - About 2 hrs to fix
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34

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

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

        case 17:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

        case 18:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
Severity: Major
Found in packages/optimise-core/src/db/patient_pregnancy.table.js and 23 other locations - About 2 hrs to fix
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

        case 16:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

        case 18:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
Severity: Major
Found in packages/optimise-core/src/db/patient_diagnosis.table.js and 23 other locations - About 2 hrs to fix
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 29..34
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

        case 17:
            await dbcon().schema.table(TABLE_NAME, (table) => {
                table.dropForeign('patient');
                table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
            });
Severity: Major
Found in packages/optimise-core/src/db/visits.table.js and 23 other locations - About 2 hrs to fix
packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
packages/optimise-core/src/db/medical_history.table.js on lines 26..31
packages/optimise-core/src/db/medical_history.table.js on lines 32..37
packages/optimise-core/src/db/medical_history.table.js on lines 38..43
packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
packages/optimise-core/src/db/visits.table.js on lines 23..28
packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

                <Route path='/patientProfile/:patientId/edit/msPerfMeas/:visitId/edss' render={({ match, location }) =>
                    <div className={style.fullscreenPanel}>
                        <EDSSCalculator match={match} location={location} />
                    </div>
                } />
packages/optimise-ui/src/components/scaffold/fullscreenPanel.jsx on lines 23..27

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

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

                <Route path='/patientProfile/:patientId/visitFrontPage/:visitId/page/:currentPage' render={({ match, location }) =>
                    <div className={style.fullscreenPanel}>
                        <FrontPage match={match} location={location}/>
                    </div>
                } />
packages/optimise-ui/src/components/scaffold/fullscreenPanel.jsx on lines 18..22

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

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

File createPatient.jsx has 256 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import React, { Component } from 'react';
import { connect } from 'react-redux';
import { Redirect } from 'react-router-dom';
import moment from 'moment';
import { PickDate } from '../createMedicalElements/datepicker';
Severity: Minor
Found in packages/optimise-ui/src/components/createPatient/createPatient.jsx - About 2 hrs to fix

    Function constructor has 53 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        constructor(props) {
            super(props);
            const state = {
                currentTermName: '',
                filterText: '',
    Severity: Major
    Found in packages/optimise-ui/src/components/treePicker/treePicker.jsx - About 2 hrs to fix

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

          static getCountryFields() {
              return new Promise((resolve, reject) => getEntry('COUNTRIES', {}, '*').then((result) => {
                  const returnObj = { countries: result };
                  return resolve(returnObj);
              }).catch((error) => reject(error)));
      Severity: Major
      Found in packages/optimise-core/src/core/demographic.js and 5 other locations - About 2 hrs to fix
      packages/optimise-core/src/core/demographic.js on lines 39..44
      packages/optimise-core/src/core/demographic.js on lines 46..51
      packages/optimise-core/src/core/demographic.js on lines 53..58
      packages/optimise-core/src/core/demographic.js on lines 88..93
      packages/optimise-core/src/core/demographic.js on lines 95..100

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

      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