wikimedia/mediawiki-extensions-WikiLove

View on GitHub

Showing 51 of 81 total issues

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

        goat: {
            name: mw.msg( 'wikilove-type-goats' ),
            fields: [ 'header', 'message' ],
            header: mw.msg( 'wikilove-goats-header' ),
            text: '[[$3|left|150px]]\n$1\n\n~~~~\n<br style="clear: both;"/>', // $3 is the image filename
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 1 other location - About 3 hrs to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 396..413

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

        fox: {
            name: mw.msg( 'wikilove-type-foxes' ),
            fields: [ 'header', 'message' ],
            header: mw.msg( 'wikilove-foxes-header' ),
            text: '[[$3|left|150px]]\n$1\n\n~~~~\n<br style="clear: both;"/>', // $3 is the image filename
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 1 other location - About 3 hrs to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 378..395

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

            if ( currentTypeOrSubtype.fields.indexOf( 'header' ) !== -1 &&
                ( !currentTypeOrSubtype.header || $( '#mw-wikilove-header' ).val() !== currentTypeOrSubtype.header )
            ) {
                rememberData.header = $( '#mw-wikilove-header' ).val();
            }
Severity: Major
Found in resources/ext.wikiLove.startup/wikiLove.js and 2 other locations - About 2 hrs to fix
resources/ext.wikiLove.startup/wikiLove.js on lines 218..222
resources/ext.wikiLove.startup/wikiLove.js on lines 223..227

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

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

            if ( currentTypeOrSubtype.fields.indexOf( 'message' ) !== -1 &&
                ( !currentTypeOrSubtype.message || $( '#mw-wikilove-message' ).val() !== currentTypeOrSubtype.message )
            ) {
                rememberData.message = $( '#mw-wikilove-message' ).val();
            }
Severity: Major
Found in resources/ext.wikiLove.startup/wikiLove.js and 2 other locations - About 2 hrs to fix
resources/ext.wikiLove.startup/wikiLove.js on lines 213..217
resources/ext.wikiLove.startup/wikiLove.js on lines 218..222

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

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

            if ( currentTypeOrSubtype.fields.indexOf( 'title' ) !== -1 &&
                ( !currentTypeOrSubtype.title || $( '#mw-wikilove-title' ).val() !== currentTypeOrSubtype.title )
            ) {
                rememberData.title = $( '#mw-wikilove-title' ).val();
            }
Severity: Major
Found in resources/ext.wikiLove.startup/wikiLove.js and 2 other locations - About 2 hrs to fix
resources/ext.wikiLove.startup/wikiLove.js on lines 213..217
resources/ext.wikiLove.startup/wikiLove.js on lines 223..227

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

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

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

        if ( currentTypeOrSubtype.fields.indexOf( 'title' ) !== -1 && $( '#mw-wikilove-title' ).val().length === 0 ) {
            $( '#mw-wikilove-title' ).val( $( '#mw-wikilove-header' ).val() );
        }
Severity: Major
Found in resources/ext.wikiLove.startup/wikiLove.js and 1 other location - About 2 hrs to fix
resources/ext.wikiLove.startup/wikiLove.js on lines 580..582

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

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

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

        if ( currentTypeOrSubtype.fields.indexOf( 'title' ) !== -1 && $( '#mw-wikilove-title' ).val().length === 0 ) {
            $( '#mw-wikilove-title' ).val( $( '#mw-wikilove-header' ).val() );
        }
Severity: Major
Found in resources/ext.wikiLove.startup/wikiLove.js and 1 other location - About 2 hrs to fix
resources/ext.wikiLove.startup/wikiLove.js on lines 379..381

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

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

                diligence: {
                    fields: [ 'message' ],
                    option: mw.msg( 'wikilove-barnstar-diligence-option' ),
                    descr: mw.msg( 'wikilove-barnstar-diligence-desc' ),
                    header: mw.msg( 'wikilove-barnstar-header' ),
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 24 other locations - About 1 hr to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 32..39
resources/ext.wikiLove.startup/defaultOptions.js on lines 40..47
resources/ext.wikiLove.startup/defaultOptions.js on lines 56..63
resources/ext.wikiLove.startup/defaultOptions.js on lines 64..71
resources/ext.wikiLove.startup/defaultOptions.js on lines 72..79
resources/ext.wikiLove.startup/defaultOptions.js on lines 80..87
resources/ext.wikiLove.startup/defaultOptions.js on lines 88..95
resources/ext.wikiLove.startup/defaultOptions.js on lines 96..103
resources/ext.wikiLove.startup/defaultOptions.js on lines 104..111
resources/ext.wikiLove.startup/defaultOptions.js on lines 112..119
resources/ext.wikiLove.startup/defaultOptions.js on lines 120..127
resources/ext.wikiLove.startup/defaultOptions.js on lines 137..144
resources/ext.wikiLove.startup/defaultOptions.js on lines 145..152
resources/ext.wikiLove.startup/defaultOptions.js on lines 153..160
resources/ext.wikiLove.startup/defaultOptions.js on lines 161..168
resources/ext.wikiLove.startup/defaultOptions.js on lines 169..176
resources/ext.wikiLove.startup/defaultOptions.js on lines 177..184
resources/ext.wikiLove.startup/defaultOptions.js on lines 185..192
resources/ext.wikiLove.startup/defaultOptions.js on lines 193..200
resources/ext.wikiLove.startup/defaultOptions.js on lines 201..208
resources/ext.wikiLove.startup/defaultOptions.js on lines 209..216
resources/ext.wikiLove.startup/defaultOptions.js on lines 217..224
resources/ext.wikiLove.startup/defaultOptions.js on lines 225..232
resources/ext.wikiLove.startup/defaultOptions.js on lines 233..240

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

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

                special: {
                    fields: [ 'message' ],
                    option: mw.msg( 'wikilove-barnstar-special-option' ),
                    descr: mw.msg( 'wikilove-barnstar-special-desc' ),
                    header: mw.msg( 'wikilove-barnstar-header' ),
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 24 other locations - About 1 hr to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 32..39
resources/ext.wikiLove.startup/defaultOptions.js on lines 40..47
resources/ext.wikiLove.startup/defaultOptions.js on lines 48..55
resources/ext.wikiLove.startup/defaultOptions.js on lines 56..63
resources/ext.wikiLove.startup/defaultOptions.js on lines 64..71
resources/ext.wikiLove.startup/defaultOptions.js on lines 72..79
resources/ext.wikiLove.startup/defaultOptions.js on lines 80..87
resources/ext.wikiLove.startup/defaultOptions.js on lines 88..95
resources/ext.wikiLove.startup/defaultOptions.js on lines 96..103
resources/ext.wikiLove.startup/defaultOptions.js on lines 104..111
resources/ext.wikiLove.startup/defaultOptions.js on lines 112..119
resources/ext.wikiLove.startup/defaultOptions.js on lines 120..127
resources/ext.wikiLove.startup/defaultOptions.js on lines 137..144
resources/ext.wikiLove.startup/defaultOptions.js on lines 145..152
resources/ext.wikiLove.startup/defaultOptions.js on lines 153..160
resources/ext.wikiLove.startup/defaultOptions.js on lines 161..168
resources/ext.wikiLove.startup/defaultOptions.js on lines 169..176
resources/ext.wikiLove.startup/defaultOptions.js on lines 177..184
resources/ext.wikiLove.startup/defaultOptions.js on lines 185..192
resources/ext.wikiLove.startup/defaultOptions.js on lines 201..208
resources/ext.wikiLove.startup/defaultOptions.js on lines 209..216
resources/ext.wikiLove.startup/defaultOptions.js on lines 217..224
resources/ext.wikiLove.startup/defaultOptions.js on lines 225..232
resources/ext.wikiLove.startup/defaultOptions.js on lines 233..240

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

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

                antispam: {
                    fields: [ 'message' ],
                    option: mw.msg( 'wikilove-barnstar-antispam-option' ),
                    descr: mw.msg( 'wikilove-barnstar-antispam-desc' ),
                    header: mw.msg( 'wikilove-barnstar-header' ),
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 24 other locations - About 1 hr to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 32..39
resources/ext.wikiLove.startup/defaultOptions.js on lines 40..47
resources/ext.wikiLove.startup/defaultOptions.js on lines 48..55
resources/ext.wikiLove.startup/defaultOptions.js on lines 56..63
resources/ext.wikiLove.startup/defaultOptions.js on lines 64..71
resources/ext.wikiLove.startup/defaultOptions.js on lines 72..79
resources/ext.wikiLove.startup/defaultOptions.js on lines 80..87
resources/ext.wikiLove.startup/defaultOptions.js on lines 88..95
resources/ext.wikiLove.startup/defaultOptions.js on lines 96..103
resources/ext.wikiLove.startup/defaultOptions.js on lines 104..111
resources/ext.wikiLove.startup/defaultOptions.js on lines 112..119
resources/ext.wikiLove.startup/defaultOptions.js on lines 120..127
resources/ext.wikiLove.startup/defaultOptions.js on lines 137..144
resources/ext.wikiLove.startup/defaultOptions.js on lines 153..160
resources/ext.wikiLove.startup/defaultOptions.js on lines 161..168
resources/ext.wikiLove.startup/defaultOptions.js on lines 169..176
resources/ext.wikiLove.startup/defaultOptions.js on lines 177..184
resources/ext.wikiLove.startup/defaultOptions.js on lines 185..192
resources/ext.wikiLove.startup/defaultOptions.js on lines 193..200
resources/ext.wikiLove.startup/defaultOptions.js on lines 201..208
resources/ext.wikiLove.startup/defaultOptions.js on lines 209..216
resources/ext.wikiLove.startup/defaultOptions.js on lines 217..224
resources/ext.wikiLove.startup/defaultOptions.js on lines 225..232
resources/ext.wikiLove.startup/defaultOptions.js on lines 233..240

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

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

                civility: {
                    fields: [ 'message' ],
                    option: mw.msg( 'wikilove-barnstar-civility-option' ),
                    descr: mw.msg( 'wikilove-barnstar-civility-desc' ),
                    header: mw.msg( 'wikilove-barnstar-header' ),
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 24 other locations - About 1 hr to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 32..39
resources/ext.wikiLove.startup/defaultOptions.js on lines 40..47
resources/ext.wikiLove.startup/defaultOptions.js on lines 48..55
resources/ext.wikiLove.startup/defaultOptions.js on lines 56..63
resources/ext.wikiLove.startup/defaultOptions.js on lines 64..71
resources/ext.wikiLove.startup/defaultOptions.js on lines 72..79
resources/ext.wikiLove.startup/defaultOptions.js on lines 80..87
resources/ext.wikiLove.startup/defaultOptions.js on lines 96..103
resources/ext.wikiLove.startup/defaultOptions.js on lines 104..111
resources/ext.wikiLove.startup/defaultOptions.js on lines 112..119
resources/ext.wikiLove.startup/defaultOptions.js on lines 120..127
resources/ext.wikiLove.startup/defaultOptions.js on lines 137..144
resources/ext.wikiLove.startup/defaultOptions.js on lines 145..152
resources/ext.wikiLove.startup/defaultOptions.js on lines 153..160
resources/ext.wikiLove.startup/defaultOptions.js on lines 161..168
resources/ext.wikiLove.startup/defaultOptions.js on lines 169..176
resources/ext.wikiLove.startup/defaultOptions.js on lines 177..184
resources/ext.wikiLove.startup/defaultOptions.js on lines 185..192
resources/ext.wikiLove.startup/defaultOptions.js on lines 193..200
resources/ext.wikiLove.startup/defaultOptions.js on lines 201..208
resources/ext.wikiLove.startup/defaultOptions.js on lines 209..216
resources/ext.wikiLove.startup/defaultOptions.js on lines 217..224
resources/ext.wikiLove.startup/defaultOptions.js on lines 225..232
resources/ext.wikiLove.startup/defaultOptions.js on lines 233..240

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

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

                rosetta: {
                    fields: [ 'message' ],
                    option: mw.msg( 'wikilove-barnstar-rosetta-option' ),
                    descr: mw.msg( 'wikilove-barnstar-rosetta-desc' ),
                    header: mw.msg( 'wikilove-barnstar-header' ),
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 24 other locations - About 1 hr to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 32..39
resources/ext.wikiLove.startup/defaultOptions.js on lines 40..47
resources/ext.wikiLove.startup/defaultOptions.js on lines 48..55
resources/ext.wikiLove.startup/defaultOptions.js on lines 56..63
resources/ext.wikiLove.startup/defaultOptions.js on lines 64..71
resources/ext.wikiLove.startup/defaultOptions.js on lines 72..79
resources/ext.wikiLove.startup/defaultOptions.js on lines 80..87
resources/ext.wikiLove.startup/defaultOptions.js on lines 88..95
resources/ext.wikiLove.startup/defaultOptions.js on lines 96..103
resources/ext.wikiLove.startup/defaultOptions.js on lines 104..111
resources/ext.wikiLove.startup/defaultOptions.js on lines 112..119
resources/ext.wikiLove.startup/defaultOptions.js on lines 120..127
resources/ext.wikiLove.startup/defaultOptions.js on lines 137..144
resources/ext.wikiLove.startup/defaultOptions.js on lines 145..152
resources/ext.wikiLove.startup/defaultOptions.js on lines 153..160
resources/ext.wikiLove.startup/defaultOptions.js on lines 161..168
resources/ext.wikiLove.startup/defaultOptions.js on lines 169..176
resources/ext.wikiLove.startup/defaultOptions.js on lines 177..184
resources/ext.wikiLove.startup/defaultOptions.js on lines 193..200
resources/ext.wikiLove.startup/defaultOptions.js on lines 201..208
resources/ext.wikiLove.startup/defaultOptions.js on lines 209..216
resources/ext.wikiLove.startup/defaultOptions.js on lines 217..224
resources/ext.wikiLove.startup/defaultOptions.js on lines 225..232
resources/ext.wikiLove.startup/defaultOptions.js on lines 233..240

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

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

                editors: {
                    fields: [ 'message' ],
                    option: mw.msg( 'wikilove-barnstar-editors-option' ),
                    descr: mw.msg( 'wikilove-barnstar-editors-desc' ),
                    header: mw.msg( 'wikilove-barnstar-header' ),
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 24 other locations - About 1 hr to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 32..39
resources/ext.wikiLove.startup/defaultOptions.js on lines 40..47
resources/ext.wikiLove.startup/defaultOptions.js on lines 48..55
resources/ext.wikiLove.startup/defaultOptions.js on lines 56..63
resources/ext.wikiLove.startup/defaultOptions.js on lines 64..71
resources/ext.wikiLove.startup/defaultOptions.js on lines 72..79
resources/ext.wikiLove.startup/defaultOptions.js on lines 80..87
resources/ext.wikiLove.startup/defaultOptions.js on lines 88..95
resources/ext.wikiLove.startup/defaultOptions.js on lines 96..103
resources/ext.wikiLove.startup/defaultOptions.js on lines 104..111
resources/ext.wikiLove.startup/defaultOptions.js on lines 120..127
resources/ext.wikiLove.startup/defaultOptions.js on lines 137..144
resources/ext.wikiLove.startup/defaultOptions.js on lines 145..152
resources/ext.wikiLove.startup/defaultOptions.js on lines 153..160
resources/ext.wikiLove.startup/defaultOptions.js on lines 161..168
resources/ext.wikiLove.startup/defaultOptions.js on lines 169..176
resources/ext.wikiLove.startup/defaultOptions.js on lines 177..184
resources/ext.wikiLove.startup/defaultOptions.js on lines 185..192
resources/ext.wikiLove.startup/defaultOptions.js on lines 193..200
resources/ext.wikiLove.startup/defaultOptions.js on lines 201..208
resources/ext.wikiLove.startup/defaultOptions.js on lines 209..216
resources/ext.wikiLove.startup/defaultOptions.js on lines 217..224
resources/ext.wikiLove.startup/defaultOptions.js on lines 225..232
resources/ext.wikiLove.startup/defaultOptions.js on lines 233..240

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

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

                photographers: {
                    fields: [ 'message' ],
                    option: mw.msg( 'wikilove-barnstar-photographers-option' ),
                    descr: mw.msg( 'wikilove-barnstar-photographers-desc' ),
                    header: mw.msg( 'wikilove-barnstar-header' ),
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 24 other locations - About 1 hr to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 32..39
resources/ext.wikiLove.startup/defaultOptions.js on lines 40..47
resources/ext.wikiLove.startup/defaultOptions.js on lines 48..55
resources/ext.wikiLove.startup/defaultOptions.js on lines 56..63
resources/ext.wikiLove.startup/defaultOptions.js on lines 64..71
resources/ext.wikiLove.startup/defaultOptions.js on lines 72..79
resources/ext.wikiLove.startup/defaultOptions.js on lines 80..87
resources/ext.wikiLove.startup/defaultOptions.js on lines 88..95
resources/ext.wikiLove.startup/defaultOptions.js on lines 96..103
resources/ext.wikiLove.startup/defaultOptions.js on lines 104..111
resources/ext.wikiLove.startup/defaultOptions.js on lines 112..119
resources/ext.wikiLove.startup/defaultOptions.js on lines 120..127
resources/ext.wikiLove.startup/defaultOptions.js on lines 137..144
resources/ext.wikiLove.startup/defaultOptions.js on lines 145..152
resources/ext.wikiLove.startup/defaultOptions.js on lines 161..168
resources/ext.wikiLove.startup/defaultOptions.js on lines 169..176
resources/ext.wikiLove.startup/defaultOptions.js on lines 177..184
resources/ext.wikiLove.startup/defaultOptions.js on lines 185..192
resources/ext.wikiLove.startup/defaultOptions.js on lines 193..200
resources/ext.wikiLove.startup/defaultOptions.js on lines 201..208
resources/ext.wikiLove.startup/defaultOptions.js on lines 209..216
resources/ext.wikiLove.startup/defaultOptions.js on lines 217..224
resources/ext.wikiLove.startup/defaultOptions.js on lines 225..232
resources/ext.wikiLove.startup/defaultOptions.js on lines 233..240

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

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

                goodhumor: {
                    fields: [ 'message' ],
                    option: mw.msg( 'wikilove-barnstar-goodhumor-option' ),
                    descr: mw.msg( 'wikilove-barnstar-goodhumor-desc' ),
                    header: mw.msg( 'wikilove-barnstar-header' ),
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 24 other locations - About 1 hr to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 32..39
resources/ext.wikiLove.startup/defaultOptions.js on lines 40..47
resources/ext.wikiLove.startup/defaultOptions.js on lines 48..55
resources/ext.wikiLove.startup/defaultOptions.js on lines 56..63
resources/ext.wikiLove.startup/defaultOptions.js on lines 72..79
resources/ext.wikiLove.startup/defaultOptions.js on lines 80..87
resources/ext.wikiLove.startup/defaultOptions.js on lines 88..95
resources/ext.wikiLove.startup/defaultOptions.js on lines 96..103
resources/ext.wikiLove.startup/defaultOptions.js on lines 104..111
resources/ext.wikiLove.startup/defaultOptions.js on lines 112..119
resources/ext.wikiLove.startup/defaultOptions.js on lines 120..127
resources/ext.wikiLove.startup/defaultOptions.js on lines 137..144
resources/ext.wikiLove.startup/defaultOptions.js on lines 145..152
resources/ext.wikiLove.startup/defaultOptions.js on lines 153..160
resources/ext.wikiLove.startup/defaultOptions.js on lines 161..168
resources/ext.wikiLove.startup/defaultOptions.js on lines 169..176
resources/ext.wikiLove.startup/defaultOptions.js on lines 177..184
resources/ext.wikiLove.startup/defaultOptions.js on lines 185..192
resources/ext.wikiLove.startup/defaultOptions.js on lines 193..200
resources/ext.wikiLove.startup/defaultOptions.js on lines 201..208
resources/ext.wikiLove.startup/defaultOptions.js on lines 209..216
resources/ext.wikiLove.startup/defaultOptions.js on lines 217..224
resources/ext.wikiLove.startup/defaultOptions.js on lines 225..232
resources/ext.wikiLove.startup/defaultOptions.js on lines 233..240

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

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

                copyeditor: {
                    fields: [ 'message' ],
                    option: mw.msg( 'wikilove-barnstar-copyeditor-option' ),
                    descr: mw.msg( 'wikilove-barnstar-copyeditor-desc' ),
                    header: mw.msg( 'wikilove-barnstar-header' ),
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 24 other locations - About 1 hr to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 32..39
resources/ext.wikiLove.startup/defaultOptions.js on lines 40..47
resources/ext.wikiLove.startup/defaultOptions.js on lines 48..55
resources/ext.wikiLove.startup/defaultOptions.js on lines 56..63
resources/ext.wikiLove.startup/defaultOptions.js on lines 64..71
resources/ext.wikiLove.startup/defaultOptions.js on lines 72..79
resources/ext.wikiLove.startup/defaultOptions.js on lines 80..87
resources/ext.wikiLove.startup/defaultOptions.js on lines 88..95
resources/ext.wikiLove.startup/defaultOptions.js on lines 104..111
resources/ext.wikiLove.startup/defaultOptions.js on lines 112..119
resources/ext.wikiLove.startup/defaultOptions.js on lines 120..127
resources/ext.wikiLove.startup/defaultOptions.js on lines 137..144
resources/ext.wikiLove.startup/defaultOptions.js on lines 145..152
resources/ext.wikiLove.startup/defaultOptions.js on lines 153..160
resources/ext.wikiLove.startup/defaultOptions.js on lines 161..168
resources/ext.wikiLove.startup/defaultOptions.js on lines 169..176
resources/ext.wikiLove.startup/defaultOptions.js on lines 177..184
resources/ext.wikiLove.startup/defaultOptions.js on lines 185..192
resources/ext.wikiLove.startup/defaultOptions.js on lines 193..200
resources/ext.wikiLove.startup/defaultOptions.js on lines 201..208
resources/ext.wikiLove.startup/defaultOptions.js on lines 209..216
resources/ext.wikiLove.startup/defaultOptions.js on lines 217..224
resources/ext.wikiLove.startup/defaultOptions.js on lines 225..232
resources/ext.wikiLove.startup/defaultOptions.js on lines 233..240

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

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

                kindness: {
                    fields: [ 'message' ],
                    option: mw.msg( 'wikilove-barnstar-kindness-option' ),
                    descr: mw.msg( 'wikilove-barnstar-kindness-desc' ),
                    header: mw.msg( 'wikilove-barnstar-header' ),
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 24 other locations - About 1 hr to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 32..39
resources/ext.wikiLove.startup/defaultOptions.js on lines 40..47
resources/ext.wikiLove.startup/defaultOptions.js on lines 48..55
resources/ext.wikiLove.startup/defaultOptions.js on lines 56..63
resources/ext.wikiLove.startup/defaultOptions.js on lines 64..71
resources/ext.wikiLove.startup/defaultOptions.js on lines 72..79
resources/ext.wikiLove.startup/defaultOptions.js on lines 80..87
resources/ext.wikiLove.startup/defaultOptions.js on lines 88..95
resources/ext.wikiLove.startup/defaultOptions.js on lines 96..103
resources/ext.wikiLove.startup/defaultOptions.js on lines 104..111
resources/ext.wikiLove.startup/defaultOptions.js on lines 112..119
resources/ext.wikiLove.startup/defaultOptions.js on lines 120..127
resources/ext.wikiLove.startup/defaultOptions.js on lines 137..144
resources/ext.wikiLove.startup/defaultOptions.js on lines 145..152
resources/ext.wikiLove.startup/defaultOptions.js on lines 153..160
resources/ext.wikiLove.startup/defaultOptions.js on lines 169..176
resources/ext.wikiLove.startup/defaultOptions.js on lines 177..184
resources/ext.wikiLove.startup/defaultOptions.js on lines 185..192
resources/ext.wikiLove.startup/defaultOptions.js on lines 193..200
resources/ext.wikiLove.startup/defaultOptions.js on lines 201..208
resources/ext.wikiLove.startup/defaultOptions.js on lines 209..216
resources/ext.wikiLove.startup/defaultOptions.js on lines 217..224
resources/ext.wikiLove.startup/defaultOptions.js on lines 225..232
resources/ext.wikiLove.startup/defaultOptions.js on lines 233..240

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

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

                writers: {
                    fields: [ 'message' ],
                    option: mw.msg( 'wikilove-barnstar-writers-option' ),
                    descr: mw.msg( 'wikilove-barnstar-writers-desc' ),
                    header: mw.msg( 'wikilove-barnstar-header' ),
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 24 other locations - About 1 hr to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 32..39
resources/ext.wikiLove.startup/defaultOptions.js on lines 40..47
resources/ext.wikiLove.startup/defaultOptions.js on lines 48..55
resources/ext.wikiLove.startup/defaultOptions.js on lines 56..63
resources/ext.wikiLove.startup/defaultOptions.js on lines 64..71
resources/ext.wikiLove.startup/defaultOptions.js on lines 72..79
resources/ext.wikiLove.startup/defaultOptions.js on lines 80..87
resources/ext.wikiLove.startup/defaultOptions.js on lines 88..95
resources/ext.wikiLove.startup/defaultOptions.js on lines 96..103
resources/ext.wikiLove.startup/defaultOptions.js on lines 104..111
resources/ext.wikiLove.startup/defaultOptions.js on lines 112..119
resources/ext.wikiLove.startup/defaultOptions.js on lines 120..127
resources/ext.wikiLove.startup/defaultOptions.js on lines 137..144
resources/ext.wikiLove.startup/defaultOptions.js on lines 145..152
resources/ext.wikiLove.startup/defaultOptions.js on lines 153..160
resources/ext.wikiLove.startup/defaultOptions.js on lines 161..168
resources/ext.wikiLove.startup/defaultOptions.js on lines 169..176
resources/ext.wikiLove.startup/defaultOptions.js on lines 177..184
resources/ext.wikiLove.startup/defaultOptions.js on lines 185..192
resources/ext.wikiLove.startup/defaultOptions.js on lines 193..200
resources/ext.wikiLove.startup/defaultOptions.js on lines 201..208
resources/ext.wikiLove.startup/defaultOptions.js on lines 209..216
resources/ext.wikiLove.startup/defaultOptions.js on lines 217..224
resources/ext.wikiLove.startup/defaultOptions.js on lines 225..232

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

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

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

        if ( currentTypeOrSubtype.fields.indexOf( 'header' ) !== -1 && $( '#mw-wikilove-header' ).val().length === 0 ) {
            $.wikiLove.showAddDetailsError( 'wikilove-err-header' );
            return false;
        }
Severity: Major
Found in resources/ext.wikiLove.startup/wikiLove.js and 1 other location - About 1 hr to fix
resources/ext.wikiLove.startup/wikiLove.js on lines 373..376

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

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

                teamwork: {
                    fields: [ 'message' ],
                    option: mw.msg( 'wikilove-barnstar-teamwork-option' ),
                    descr: mw.msg( 'wikilove-barnstar-teamwork-desc' ),
                    header: mw.msg( 'wikilove-barnstar-header' ),
Severity: Major
Found in resources/ext.wikiLove.startup/defaultOptions.js and 24 other locations - About 1 hr to fix
resources/ext.wikiLove.startup/defaultOptions.js on lines 32..39
resources/ext.wikiLove.startup/defaultOptions.js on lines 40..47
resources/ext.wikiLove.startup/defaultOptions.js on lines 48..55
resources/ext.wikiLove.startup/defaultOptions.js on lines 56..63
resources/ext.wikiLove.startup/defaultOptions.js on lines 64..71
resources/ext.wikiLove.startup/defaultOptions.js on lines 72..79
resources/ext.wikiLove.startup/defaultOptions.js on lines 80..87
resources/ext.wikiLove.startup/defaultOptions.js on lines 88..95
resources/ext.wikiLove.startup/defaultOptions.js on lines 96..103
resources/ext.wikiLove.startup/defaultOptions.js on lines 104..111
resources/ext.wikiLove.startup/defaultOptions.js on lines 112..119
resources/ext.wikiLove.startup/defaultOptions.js on lines 120..127
resources/ext.wikiLove.startup/defaultOptions.js on lines 137..144
resources/ext.wikiLove.startup/defaultOptions.js on lines 145..152
resources/ext.wikiLove.startup/defaultOptions.js on lines 153..160
resources/ext.wikiLove.startup/defaultOptions.js on lines 161..168
resources/ext.wikiLove.startup/defaultOptions.js on lines 169..176
resources/ext.wikiLove.startup/defaultOptions.js on lines 177..184
resources/ext.wikiLove.startup/defaultOptions.js on lines 185..192
resources/ext.wikiLove.startup/defaultOptions.js on lines 193..200
resources/ext.wikiLove.startup/defaultOptions.js on lines 201..208
resources/ext.wikiLove.startup/defaultOptions.js on lines 217..224
resources/ext.wikiLove.startup/defaultOptions.js on lines 225..232
resources/ext.wikiLove.startup/defaultOptions.js on lines 233..240

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

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