wikimedia/mediawiki-extensions-WikiLove

View on GitHub

Showing 81 of 81 total issues

File wikiLove.js has 565 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/* eslint-disable no-jquery/no-global-selector */
const overlayContainer = document.createElement( 'div' );
const WikiLoveDialog = require( './WikiLoveDialog.vue' );
const Vue = require( 'vue' );
let options = {}, // options modifiable by the user
Severity: Major
Found in resources/ext.wikiLove.startup/wikiLove.js - About 1 day to fix

    File defaultOptions.js has 412 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    // See https://www.mediawiki.org/wiki/Extension:WikiLove for basic documentation on configuration.
    
    module.exports = {
        defaultText:
            '{| style="background-color: $5; border: 1px solid $6;"\n' +
    Severity: Minor
    Found in resources/ext.wikiLove.startup/defaultOptions.js - About 5 hrs to fix

      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

      Function showGallery has 73 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          showGallery: function () {
              let i, id, index, loadingIndex, galleryNumber, $img;
              const titles = [];
              const imageList = currentTypeOrSubtype.gallery.imageList.slice();
      
      
      Severity: Major
      Found in resources/ext.wikiLove.startup/wikiLove.js - About 2 hrs to fix

        Method execute has 70 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function execute() {
                $params = $this->extractRequestParams();
        
                // In some cases we need the wiki mark-up stripped from the subject
                $strippedSubject = $this->parserFactory->getInstance()->stripSectionName( $params['subject'] );
        Severity: Major
        Found in includes/ApiWikiLove.php - About 2 hrs to fix

          Function openDialog has 68 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              openDialog: function ( recipients, extraTags ) {
                  let type, typeId, $button;
                  // If a list of recipients are specified, this will override the normal
                  // behavior of WikiLove, which is to post on the Talk page of the
                  // current page. It will also disable redirecting the user after submitting.
          Severity: Major
          Found in resources/ext.wikiLove.startup/wikiLove.js - About 2 hrs to fix

            Function doSend has 66 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                doSend: function ( subject, wikitext, message, type, email, extraTags ) {
                    let targetBaseUrl, currentBaseUrl,
                        wikiLoveNumberAttempted = 0,
                        wikiLoveNumberPosted = 0;
            
            
            Severity: Major
            Found in resources/ext.wikiLove.startup/wikiLove.js - About 2 hrs to fix

              Function validatePreviewForm has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
              Open

                  validatePreviewForm: function ( e ) {
                      let imageTitle;
              
                      e.preventDefault();
                      $( '#mw-wikilove-success' ).hide();
              Severity: Minor
              Found in resources/ext.wikiLove.startup/wikiLove.js - About 2 hrs to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Function validatePreviewForm has 62 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  validatePreviewForm: function ( e ) {
                      let imageTitle;
              
                      e.preventDefault();
                      $( '#mw-wikilove-success' ).hide();
              Severity: Major
              Found in resources/ext.wikiLove.startup/wikiLove.js - About 2 hrs to fix

                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

                Function rememberInputData has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
                Open

                    rememberInputData: function () {
                        if ( rememberData === null ) {
                            rememberData = {
                                header: '',
                                title: '',
                Severity: Minor
                Found in resources/ext.wikiLove.startup/wikiLove.js - About 2 hrs to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Similar blocks of code found in 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

                Function openDialog has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
                Open

                    openDialog: function ( recipients, extraTags ) {
                        let type, typeId, $button;
                        // If a list of recipients are specified, this will override the normal
                        // behavior of WikiLove, which is to post on the Talk page of the
                        // current page. It will also disable redirecting the user after submitting.
                Severity: Minor
                Found in resources/ext.wikiLove.startup/wikiLove.js - About 1 hr to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Similar blocks of code found in 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

                Severity
                Category
                Status
                Source
                Language