stevenocchipinti/dwi-visualiser

View on GitHub
public/lib/jquery.js

Summary

Maintainability
F
1 mo
Test Coverage

File jquery.js has 5631 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/*!
 * jQuery JavaScript Library v1.5.1
 * http://jquery.com/
 *
 * Copyright 2011, John Resig
Severity: Major
Found in public/lib/jquery.js - About 2 wks to fix

    Function jQuery has 699 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    var jQuery = (function() {
    
    // Define a local copy of jQuery
    var jQuery = function( selector, context ) {
            // The jQuery object is actually just the init constructor 'enhanced'
    Severity: Major
    Found in public/lib/jquery.js - About 3 days to fix

      Function ajax has 233 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          ajax: function( url, options ) {
      
              // If url is an object, simulate pre-1.5 signature
              if ( typeof url === "object" ) {
                  options = url;
      Severity: Major
      Found in public/lib/jquery.js - About 1 day to fix

        Consider simplifying this complex logical expression.
        Open

                if ( event.pageX == null && event.clientX != null ) {
                    var doc = document.documentElement,
                        body = document.body;
        
                    event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc && doc.clientLeft || body && body.clientLeft || 0);
        Severity: Critical
        Found in public/lib/jquery.js - About 4 hrs to fix

          Function Sizzle has 108 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          var Sizzle = function( selector, context, results, seed ) {
              results = results || [];
              context = context || document;
          
              var origContext = context;
          Severity: Major
          Found in public/lib/jquery.js - About 4 hrs to fix

            Function remove has 85 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                remove: function( elem, types, handler, pos ) {
                    // don't do events on text and comment nodes
                    if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
                        return;
                    }
            Severity: Major
            Found in public/lib/jquery.js - About 3 hrs to fix

              Function send has 81 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                              send: function( headers, complete ) {
              
                                  // Get a new xhr
                                  var xhr = s.xhr(),
                                      handle,
              Severity: Major
              Found in public/lib/jquery.js - About 3 hrs to fix

                Function add has 79 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    add: function( elem, types, handler, data ) {
                        if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
                            return;
                        }
                
                
                Severity: Major
                Found in public/lib/jquery.js - About 3 hrs to fix

                  Consider simplifying this complex logical expression.
                  Open

                  if ( "getBoundingClientRect" in document.documentElement ) {
                      jQuery.fn.offset = function( options ) {
                          var elem = this[0], box;
                  
                          if ( options ) {
                  Severity: Critical
                  Found in public/lib/jquery.js - About 3 hrs to fix

                    Function animate has 71 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        animate: function( prop, speed, easing, callback ) {
                            var optall = jQuery.speed(speed, easing, callback);
                    
                            if ( jQuery.isEmptyObject( prop ) ) {
                                return this.each( optall.complete );
                    Severity: Major
                    Found in public/lib/jquery.js - About 2 hrs to fix

                      Function trigger has 71 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          trigger: function( event, data, elem /*, bubbling */ ) {
                              // Event object or event type
                              var type = event.type || event,
                                  bubbling = arguments[3];
                      
                      
                      Severity: Major
                      Found in public/lib/jquery.js - About 2 hrs to fix

                        Function val has 70 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            val: function( value ) {
                                if ( !arguments.length ) {
                                    var elem = this[0];
                        
                                    if ( elem ) {
                        Severity: Major
                        Found in public/lib/jquery.js - About 2 hrs to fix

                          Function done has 67 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                                  function done( status, statusText, responses, headers ) {
                          
                                      // Called once
                                      if ( state === 2 ) {
                                          return;
                          Severity: Major
                          Found in public/lib/jquery.js - About 2 hrs to fix

                            Function filter has 67 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                            Sizzle.filter = function( expr, set, inplace, not ) {
                                var match, anyFound,
                                    old = expr,
                                    result = [],
                                    curLoop = set,
                            Severity: Major
                            Found in public/lib/jquery.js - About 2 hrs to fix

                              Function attr has 67 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                                  attr: function( elem, name, value, pass ) {
                                      // don't get/set attributes on text, comment and attribute nodes
                                      if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || elem.nodeType === 2 ) {
                                          return undefined;
                                      }
                              Severity: Major
                              Found in public/lib/jquery.js - About 2 hrs to fix

                                Function _Deferred has 65 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                    _Deferred: function() {
                                        var // callbacks list
                                            callbacks = [],
                                            // stored [ context , args ]
                                            fired,
                                Severity: Major
                                Found in public/lib/jquery.js - About 2 hrs to fix

                                  Function init has 61 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                      init: function( selector, context, rootjQuery ) {
                                          var match, elem, ret, doc;
                                  
                                          // Handle $(""), $(null), or $(undefined)
                                          if ( !selector ) {
                                  Severity: Major
                                  Found in public/lib/jquery.js - About 2 hrs to fix

                                    Function clean has 61 lines of code (exceeds 25 allowed). Consider refactoring.
                                    Open

                                        clean: function( elems, context, fragment, scripts ) {
                                            context = context || document;
                                    
                                            // !context.createElement fails in IE with an error but returns typeof 'object'
                                            if ( typeof context.createElement === "undefined" ) {
                                    Severity: Major
                                    Found in public/lib/jquery.js - About 2 hrs to fix

                                      Function liveHandler has 58 lines of code (exceeds 25 allowed). Consider refactoring.
                                      Open

                                      function liveHandler( event ) {
                                          var stop, maxLevel, related, match, handleObj, elem, j, i, l, data, close, namespace, ret,
                                              elems = [],
                                              selectors = [],
                                              events = jQuery._data( this, "events" );
                                      Severity: Major
                                      Found in public/lib/jquery.js - About 2 hrs to fix

                                        Function ajaxConvert has 57 lines of code (exceeds 25 allowed). Consider refactoring.
                                        Open

                                        function ajaxConvert( s, response ) {
                                        
                                            // Apply the dataFilter if provided
                                            if ( s.dataFilter ) {
                                                response = s.dataFilter( response, s.dataType );
                                        Severity: Major
                                        Found in public/lib/jquery.js - About 2 hrs to fix

                                          Function offset has 55 lines of code (exceeds 25 allowed). Consider refactoring.
                                          Open

                                              jQuery.fn.offset = function( options ) {
                                                  var elem = this[0];
                                          
                                                  if ( options ) {
                                                      return this.each(function( i ) {
                                          Severity: Major
                                          Found in public/lib/jquery.js - About 2 hrs to fix

                                            Function domManip has 46 lines of code (exceeds 25 allowed). Consider refactoring.
                                            Open

                                                domManip: function( args, table, callback ) {
                                                    var results, first, fragment, parent,
                                                        value = args[0],
                                                        scripts = [];
                                            
                                            
                                            Severity: Minor
                                            Found in public/lib/jquery.js - About 1 hr to fix

                                              Function ajaxHandleResponses has 46 lines of code (exceeds 25 allowed). Consider refactoring.
                                              Open

                                              function ajaxHandleResponses( s, jqXHR, responses ) {
                                              
                                                  var contents = s.contents,
                                                      dataTypes = s.dataTypes,
                                                      responseFields = s.responseFields,
                                              Severity: Minor
                                              Found in public/lib/jquery.js - About 1 hr to fix

                                                Function closest has 45 lines of code (exceeds 25 allowed). Consider refactoring.
                                                Open

                                                    closest: function( selectors, context ) {
                                                        var ret = [], i, l, cur = this[0];
                                                
                                                        if ( jQuery.isArray( selectors ) ) {
                                                            var match, selector,
                                                Severity: Minor
                                                Found in public/lib/jquery.js - About 1 hr to fix

                                                  Function CHILD has 45 lines of code (exceeds 25 allowed). Consider refactoring.
                                                  Open

                                                          CHILD: function( elem, match ) {
                                                              var type = match[1],
                                                                  node = elem;
                                                  
                                                              switch ( type ) {
                                                  Severity: Minor
                                                  Found in public/lib/jquery.js - About 1 hr to fix

                                                    Function removeData has 45 lines of code (exceeds 25 allowed). Consider refactoring.
                                                    Open

                                                        removeData: function( elem, name, pvt /* Internal Use Only */ ) {
                                                            if ( !jQuery.acceptData( elem ) ) {
                                                                return;
                                                            }
                                                    
                                                    
                                                    Severity: Minor
                                                    Found in public/lib/jquery.js - About 1 hr to fix

                                                      Function load has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                                                      Open

                                                          load: function( url, params, callback ) {
                                                              if ( typeof url !== "string" && _load ) {
                                                                  return _load.apply( this, arguments );
                                                      
                                                              // Don't do a request if no elements are being requested
                                                      Severity: Minor
                                                      Found in public/lib/jquery.js - About 1 hr to fix

                                                        Function data has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                                                        Open

                                                            data: function( elem, name, data, pvt /* Internal Use Only */ ) {
                                                                if ( !jQuery.acceptData( elem ) ) {
                                                                    return;
                                                                }
                                                        
                                                        
                                                        Severity: Minor
                                                        Found in public/lib/jquery.js - About 1 hr to fix

                                                          Function name has 42 lines of code (exceeds 25 allowed). Consider refactoring.
                                                          Open

                                                              jQuery.fn[ name ] = function( types, data, fn, origSelector /* Internal Use Only */ ) {
                                                                  var type, i = 0, match, namespaces, preType,
                                                                      selector = origSelector || this.selector,
                                                                      context = origSelector ? this : jQuery( this.context );
                                                          
                                                          
                                                          Severity: Minor
                                                          Found in public/lib/jquery.js - About 1 hr to fix

                                                            Function data has 41 lines of code (exceeds 25 allowed). Consider refactoring.
                                                            Open

                                                                data: function( key, value ) {
                                                                    var data = null;
                                                            
                                                                    if ( typeof key === "undefined" ) {
                                                                        if ( this.length ) {
                                                            Severity: Minor
                                                            Found in public/lib/jquery.js - About 1 hr to fix

                                                              Function step has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                                                              Open

                                                                  step: function( gotoEnd ) {
                                                                      var t = jQuery.now(), done = true;
                                                              
                                                                      if ( gotoEnd || t >= this.options.duration + this.startTime ) {
                                                                          this.now = this.end;
                                                              Severity: Minor
                                                              Found in public/lib/jquery.js - About 1 hr to fix

                                                                Function extend has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                Open

                                                                jQuery.extend = jQuery.fn.extend = function() {
                                                                    var options, name, src, copy, copyIsArray, clone,
                                                                        target = arguments[0] || {},
                                                                        i = 1,
                                                                        length = arguments.length,
                                                                Severity: Minor
                                                                Found in public/lib/jquery.js - About 1 hr to fix

                                                                  Function handle has 38 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                  Open

                                                                      handle: function( event ) {
                                                                          var all, handlers, namespaces, namespace_re, events,
                                                                              namespace_sort = [],
                                                                              args = jQuery.makeArray( arguments );
                                                                  
                                                                  
                                                                  Severity: Minor
                                                                  Found in public/lib/jquery.js - About 1 hr to fix

                                                                    Function fix has 34 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                    Open

                                                                        fix: function( event ) {
                                                                            if ( event[ jQuery.expando ] ) {
                                                                                return event;
                                                                            }
                                                                    
                                                                    
                                                                    Severity: Minor
                                                                    Found in public/lib/jquery.js - About 1 hr to fix

                                                                      Consider simplifying this complex logical expression.
                                                                      Open

                                                                          if ( args.length === 1 && typeof args[0] === "string" && args[0].length < 512 && doc === document &&
                                                                              args[0].charAt(0) === "<" && !rnocache.test( args[0] ) && (jQuery.support.checkClone || !rchecked.test( args[0] )) ) {
                                                                      
                                                                              cacheable = true;
                                                                              cacheresults = jQuery.fragments[ args[0] ];
                                                                      Severity: Critical
                                                                      Found in public/lib/jquery.js - About 1 hr to fix

                                                                        Consider simplifying this complex logical expression.
                                                                        Open

                                                                                    if ( match[1] === "nth" ) {
                                                                                        if ( !match[2] ) {
                                                                                            Sizzle.error( match[0] );
                                                                                        }
                                                                        
                                                                        
                                                                        Severity: Critical
                                                                        Found in public/lib/jquery.js - About 1 hr to fix

                                                                          Function Deferred has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                          Open

                                                                              Deferred: function( func ) {
                                                                                  var deferred = jQuery._Deferred(),
                                                                                      failDeferred = jQuery._Deferred(),
                                                                                      promise;
                                                                                  // Add errorDeferred methods, then and promise
                                                                          Severity: Minor
                                                                          Found in public/lib/jquery.js - About 1 hr to fix

                                                                            Function when has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                            Open

                                                                                when: function( object ) {
                                                                                    var lastIndex = arguments.length,
                                                                                        deferred = lastIndex <= 1 && object && jQuery.isFunction( object.promise ) ?
                                                                                            object :
                                                                                            jQuery.Deferred(),
                                                                            Severity: Minor
                                                                            Found in public/lib/jquery.js - About 1 hr to fix

                                                                              Function dirCheck has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                              Open

                                                                              function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
                                                                                  for ( var i = 0, l = checkSet.length; i < l; i++ ) {
                                                                                      var elem = checkSet[i];
                                                                              
                                                                                      if ( elem ) {
                                                                              Severity: Minor
                                                                              Found in public/lib/jquery.js - About 1 hr to fix

                                                                                Function each has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                Open

                                                                                    each: function( object, callback, args ) {
                                                                                        var name, i = 0,
                                                                                            length = object.length,
                                                                                            isObj = length === undefined || jQuery.isFunction(object);
                                                                                
                                                                                
                                                                                Severity: Minor
                                                                                Found in public/lib/jquery.js - About 1 hr to fix

                                                                                  Function setOffset has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                  Open

                                                                                      setOffset: function( elem, options, i ) {
                                                                                          var position = jQuery.css( elem, "position" );
                                                                                  
                                                                                          // set position first, in-case top/left are set even on static elem
                                                                                          if ( position === "static" ) {
                                                                                  Severity: Minor
                                                                                  Found in public/lib/jquery.js - About 1 hr to fix

                                                                                    Function offset has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                    Open

                                                                                        jQuery.fn.offset = function( options ) {
                                                                                            var elem = this[0], box;
                                                                                    
                                                                                            if ( options ) {
                                                                                                return this.each(function( i ) {
                                                                                    Severity: Minor
                                                                                    Found in public/lib/jquery.js - About 1 hr to fix

                                                                                      Function cleanData has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                      Open

                                                                                          cleanData: function( elems ) {
                                                                                              var data, id, cache = jQuery.cache, internalKey = jQuery.expando, special = jQuery.event.special,
                                                                                                  deleteExpando = jQuery.support.deleteExpando;
                                                                                      
                                                                                              for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {
                                                                                      Severity: Minor
                                                                                      Found in public/lib/jquery.js - About 1 hr to fix

                                                                                        Function ATTR has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                        Open

                                                                                                ATTR: function( elem, match ) {
                                                                                                    var name = match[1],
                                                                                                        result = Expr.attrHandle[ name ] ?
                                                                                                            Expr.attrHandle[ name ]( elem ) :
                                                                                                            elem[ name ] != null ?
                                                                                        Severity: Minor
                                                                                        Found in public/lib/jquery.js - About 1 hr to fix

                                                                                          Function type has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                          Open

                                                                                              jQuery.fn[ type ] = function( size ) {
                                                                                                  // Get window width or height
                                                                                                  var elem = this[0];
                                                                                                  if ( !elem ) {
                                                                                                      return size == null ? null : this;
                                                                                          Severity: Minor
                                                                                          Found in public/lib/jquery.js - About 1 hr to fix

                                                                                            Function addClass has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                            Open

                                                                                                addClass: function( value ) {
                                                                                                    if ( jQuery.isFunction(value) ) {
                                                                                                        return this.each(function(i) {
                                                                                                            var self = jQuery(this);
                                                                                                            self.addClass( value.call(this, i, self.attr("class")) );
                                                                                            Severity: Minor
                                                                                            Found in public/lib/jquery.js - About 1 hr to fix

                                                                                              Function html has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                              Open

                                                                                                  html: function( value ) {
                                                                                                      if ( value === undefined ) {
                                                                                                          return this[0] && this[0].nodeType === 1 ?
                                                                                                              this[0].innerHTML.replace(rinlinejQuery, "") :
                                                                                                              null;
                                                                                              Severity: Minor
                                                                                              Found in public/lib/jquery.js - About 1 hr to fix

                                                                                                Function > has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                                Open

                                                                                                        ">": function( checkSet, part ) {
                                                                                                            var elem,
                                                                                                                isPartStr = typeof part === "string",
                                                                                                                i = 0,
                                                                                                                l = checkSet.length;
                                                                                                Severity: Minor
                                                                                                Found in public/lib/jquery.js - About 1 hr to fix

                                                                                                  Function find has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                                  Open

                                                                                                  Sizzle.find = function( expr, context, isXML ) {
                                                                                                      var set;
                                                                                                  
                                                                                                      if ( !expr ) {
                                                                                                          return [];
                                                                                                  Severity: Minor
                                                                                                  Found in public/lib/jquery.js - About 1 hr to fix

                                                                                                    Function toggleClass has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                                    Open

                                                                                                        toggleClass: function( value, stateVal ) {
                                                                                                            var type = typeof value,
                                                                                                                isBool = typeof stateVal === "boolean";
                                                                                                    
                                                                                                            if ( jQuery.isFunction( value ) ) {
                                                                                                    Severity: Minor
                                                                                                    Found in public/lib/jquery.js - About 1 hr to fix

                                                                                                      Consider simplifying this complex logical expression.
                                                                                                      Open

                                                                                                          if ( s.dataTypes[ 0 ] === "jsonp" ||
                                                                                                              originalSettings.jsonpCallback ||
                                                                                                              originalSettings.jsonp != null ||
                                                                                                              s.jsonp !== false && ( jsre.test( s.url ) ||
                                                                                                                      dataIsString && jsre.test( s.data ) ) ) {
                                                                                                      Severity: Major
                                                                                                      Found in public/lib/jquery.js - About 1 hr to fix

                                                                                                        Avoid deeply nested control flow statements.
                                                                                                        Open

                                                                                                                            if ( !inplace ) {
                                                                                                                                curLoop = result;
                                                                                                                            }
                                                                                                        Severity: Major
                                                                                                        Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                          Avoid deeply nested control flow statements.
                                                                                                          Open

                                                                                                                                  if ( elem && elem.parentNode ) {
                                                                                                                                      // Handle the case where IE and Opera return items
                                                                                                                                      // by name instead of ID
                                                                                                                                      if ( elem.id === match[3] ) {
                                                                                                                                          return makeArray( [ elem ], extra );
                                                                                                          Severity: Major
                                                                                                          Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                            Avoid deeply nested control flow statements.
                                                                                                            Open

                                                                                                                                        if ( display === "inline" ) {
                                                                                                                                            this.style.display = "inline-block";
                                                                                                            
                                                                                                                                        } else {
                                                                                                                                            this.style.display = "inline";
                                                                                                            Severity: Major
                                                                                                            Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                              Avoid deeply nested control flow statements.
                                                                                                              Open

                                                                                                                                  if ( copyIsArray ) {
                                                                                                                                      copyIsArray = false;
                                                                                                                                      clone = src && jQuery.isArray(src) ? src : [];
                                                                                                              
                                                                                                                                  } else {
                                                                                                              Severity: Major
                                                                                                              Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                Avoid deeply nested control flow statements.
                                                                                                                Open

                                                                                                                                        if ( jQuery.isPlainObject( context ) ) {
                                                                                                                                            selector = [ document.createElement( ret[1] ) ];
                                                                                                                                            jQuery.fn.attr.call( selector, context, true );
                                                                                                                
                                                                                                                                        } else {
                                                                                                                Severity: Major
                                                                                                                Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                  Avoid deeply nested control flow statements.
                                                                                                                  Open

                                                                                                                                      if ( !match ) {
                                                                                                                                          anyFound = found = true;
                                                                                                                  
                                                                                                                                      } else if ( match === true ) {
                                                                                                                                          continue;
                                                                                                                  Severity: Major
                                                                                                                  Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                    Avoid deeply nested control flow statements.
                                                                                                                    Open

                                                                                                                                            if ( elem.id !== match[2] ) {
                                                                                                                                                return rootjQuery.find( selector );
                                                                                                                                            }
                                                                                                                    Severity: Major
                                                                                                                    Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                      Avoid deeply nested control flow statements.
                                                                                                                      Open

                                                                                                                                                          if ( xml && xml.documentElement /* #4958 */ ) {
                                                                                                                                                              responses.xml = xml;
                                                                                                                                                          }
                                                                                                                      Severity: Major
                                                                                                                      Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                        Avoid deeply nested control flow statements.
                                                                                                                        Open

                                                                                                                                                if ( !relativeHierarchySelector || hasParent ) {
                                                                                                                                                    return makeArray( context.querySelectorAll( "[id='" + nid + "'] " + query ), extra );
                                                                                                                                                }
                                                                                                                        Severity: Major
                                                                                                                        Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                          Avoid deeply nested control flow statements.
                                                                                                                          Open

                                                                                                                                                  if ( ret[r] === ret[n] ) {
                                                                                                                                                      ret.splice(n--, 1);
                                                                                                                                                      break;
                                                                                                                                                  }
                                                                                                                          Severity: Major
                                                                                                                          Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                            Avoid deeply nested control flow statements.
                                                                                                                            Open

                                                                                                                                                    if ( name.indexOf( "data-" ) === 0 ) {
                                                                                                                                                        name = name.substr( 5 );
                                                                                                                                                        dataAttr( this[0], name, data[ name ] );
                                                                                                                                                    }
                                                                                                                            Severity: Major
                                                                                                                            Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                              Avoid deeply nested control flow statements.
                                                                                                                              Open

                                                                                                                                                  if ( !old ) {
                                                                                                                                                      context.setAttribute( "id", nid );
                                                                                                                                                  } else {
                                                                                                                                                      nid = nid.replace( /'/g, "\\$&" );
                                                                                                                                                  }
                                                                                                                              Severity: Major
                                                                                                                              Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                Avoid deeply nested control flow statements.
                                                                                                                                Open

                                                                                                                                                        if ( elem.nodeType === 1 ) {
                                                                                                                                                            elem.removeAttribute( name );
                                                                                                                                                        }
                                                                                                                                Severity: Major
                                                                                                                                Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                  Avoid deeply nested control flow statements.
                                                                                                                                  Open

                                                                                                                                                          if ( match.jquery ? match.index(cur) > -1 : jQuery(cur).is(match) ) {
                                                                                                                                                              ret.push({ selector: selector, elem: cur, level: level });
                                                                                                                                                          }
                                                                                                                                  Severity: Major
                                                                                                                                  Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                    Function dirNodeCheck has 6 arguments (exceeds 4 allowed). Consider refactoring.
                                                                                                                                    Open

                                                                                                                                    function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
                                                                                                                                    Severity: Minor
                                                                                                                                    Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                      Avoid deeply nested control flow statements.
                                                                                                                                      Open

                                                                                                                                                              if ( special[ type ] ) {
                                                                                                                                                                  jQuery.event.remove( elem, type );
                                                                                                                                      
                                                                                                                                                              // This is a shortcut to avoid jQuery.event.remove's overhead
                                                                                                                                                              } else {
                                                                                                                                      Severity: Major
                                                                                                                                      Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                        Avoid deeply nested control flow statements.
                                                                                                                                        Open

                                                                                                                                                                if ( pos == null ) {
                                                                                                                                                                    eventType.splice( j--, 1 );
                                                                                                                                                                }
                                                                                                                                        Severity: Major
                                                                                                                                        Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                          Avoid deeply nested control flow statements.
                                                                                                                                          Open

                                                                                                                                                                  if ( ret === false ) {
                                                                                                                                                                      event.preventDefault();
                                                                                                                                                                      event.stopPropagation();
                                                                                                                                                                  }
                                                                                                                                          Severity: Major
                                                                                                                                          Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                            Avoid deeply nested control flow statements.
                                                                                                                                            Open

                                                                                                                                                                                if ( !status && s.isLocal && !s.crossDomain ) {
                                                                                                                                                                                    status = responses.text ? 200 : 404;
                                                                                                                                                                                // IE - #1450: sometimes returns 1223 when it should be 204
                                                                                                                                                                                } else if ( status === 1223 ) {
                                                                                                                                                                                    status = 204;
                                                                                                                                            Severity: Major
                                                                                                                                            Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                              Function CLASS has 6 arguments (exceeds 4 allowed). Consider refactoring.
                                                                                                                                              Open

                                                                                                                                                      CLASS: function( match, curLoop, inplace, result, not, isXML ) {
                                                                                                                                              Severity: Minor
                                                                                                                                              Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                Function dirCheck has 6 arguments (exceeds 4 allowed). Consider refactoring.
                                                                                                                                                Open

                                                                                                                                                function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
                                                                                                                                                Severity: Minor
                                                                                                                                                Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                  Avoid deeply nested control flow statements.
                                                                                                                                                  Open

                                                                                                                                                                      if ( relativeHierarchySelector && hasParent ) {
                                                                                                                                                                          context = context.parentNode;
                                                                                                                                                                      }
                                                                                                                                                  Severity: Major
                                                                                                                                                  Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                    Avoid deeply nested control flow statements.
                                                                                                                                                    Open

                                                                                                                                                                        if ( !isXML ) {
                                                                                                                                                                            elem.sizcache = doneName;
                                                                                                                                                                            elem.sizset = i;
                                                                                                                                                                        }
                                                                                                                                                    Severity: Major
                                                                                                                                                    Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                      Avoid deeply nested control flow statements.
                                                                                                                                                      Open

                                                                                                                                                                              if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length ) {
                                                                                                                                                                                  tbody[ j ].parentNode.removeChild( tbody[ j ] );
                                                                                                                                                                              }
                                                                                                                                                      Severity: Major
                                                                                                                                                      Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                        Function ATTR has 6 arguments (exceeds 4 allowed). Consider refactoring.
                                                                                                                                                        Open

                                                                                                                                                                ATTR: function( match, curLoop, inplace, result, not, isXML ) {
                                                                                                                                                        Severity: Minor
                                                                                                                                                        Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                          Avoid deeply nested control flow statements.
                                                                                                                                                          Open

                                                                                                                                                                              if ( !anyFound ) {
                                                                                                                                                                                  return [];
                                                                                                                                                                              }
                                                                                                                                                          Severity: Major
                                                                                                                                                          Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                            Avoid deeply nested control flow statements.
                                                                                                                                                            Open

                                                                                                                                                                                if ( typeof cur !== "string" ) {
                                                                                                                                                                                    if ( elem === cur ) {
                                                                                                                                                                                        match = true;
                                                                                                                                                                                        break;
                                                                                                                                                                                    }
                                                                                                                                                            Severity: Major
                                                                                                                                                            Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                              Function inspectPrefiltersOrTransports has 6 arguments (exceeds 4 allowed). Consider refactoring.
                                                                                                                                                              Open

                                                                                                                                                              function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR,
                                                                                                                                                                      dataType /* internal */, inspected /* internal */ ) {
                                                                                                                                                              Severity: Minor
                                                                                                                                                              Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                                Function access has 6 arguments (exceeds 4 allowed). Consider refactoring.
                                                                                                                                                                Open

                                                                                                                                                                    access: function( elems, key, value, exec, fn, pass ) {
                                                                                                                                                                Severity: Minor
                                                                                                                                                                Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                                  Avoid deeply nested control flow statements.
                                                                                                                                                                  Open

                                                                                                                                                                                          for ( var c = 0, cl = classNames.length; c < cl; c++ ) {
                                                                                                                                                                                              className = className.replace(" " + classNames[c] + " ", " ");
                                                                                                                                                                                          }
                                                                                                                                                                  Severity: Major
                                                                                                                                                                  Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                                    Avoid deeply nested control flow statements.
                                                                                                                                                                    Open

                                                                                                                                                                                            if ( special.remove ) {
                                                                                                                                                                                                special.remove.call( elem, handleObj );
                                                                                                                                                                                            }
                                                                                                                                                                    Severity: Major
                                                                                                                                                                    Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                                      Avoid deeply nested control flow statements.
                                                                                                                                                                      Open

                                                                                                                                                                                          for ( var i = 0; (item = curLoop[i]) != null; i++ ) {
                                                                                                                                                                                              if ( item ) {
                                                                                                                                                                                                  found = filter( item, match, i, curLoop );
                                                                                                                                                                                                  var pass = not ^ !!found;
                                                                                                                                                                      
                                                                                                                                                                      
                                                                                                                                                                      Severity: Major
                                                                                                                                                                      Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                                        Avoid deeply nested control flow statements.
                                                                                                                                                                        Open

                                                                                                                                                                                                            if ( xhr.readyState !== 4 ) {
                                                                                                                                                                                                                xhr.abort();
                                                                                                                                                                                                            }
                                                                                                                                                                        Severity: Major
                                                                                                                                                                        Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                                          Avoid deeply nested control flow statements.
                                                                                                                                                                          Open

                                                                                                                                                                                                  if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) &&
                                                                                                                                                                                                          (!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) {
                                                                                                                                                                          
                                                                                                                                                                                                      // Get the specific value for the option
                                                                                                                                                                                                      value = jQuery(option).val();
                                                                                                                                                                          Severity: Major
                                                                                                                                                                          Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                                            Avoid deeply nested control flow statements.
                                                                                                                                                                            Open

                                                                                                                                                                                                if ( tmp[ 0 ] === prev || tmp[ 0 ] === "*" ) {
                                                                                                                                                                                                    conv2 = converters[ tmp[1] + " " + current ];
                                                                                                                                                                                                    if ( conv2 ) {
                                                                                                                                                                                                        conv1 = converters[ conv1 ];
                                                                                                                                                                                                        if ( conv1 === true ) {
                                                                                                                                                                            Severity: Major
                                                                                                                                                                            Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                                              Avoid deeply nested control flow statements.
                                                                                                                                                                              Open

                                                                                                                                                                                                      for ( var c = 0, cl = classNames.length; c < cl; c++ ) {
                                                                                                                                                                                                          if ( className.indexOf( " " + classNames[c] + " " ) < 0 ) {
                                                                                                                                                                                                              setClass += " " + classNames[c];
                                                                                                                                                                                                          }
                                                                                                                                                                                                      }
                                                                                                                                                                              Severity: Major
                                                                                                                                                                              Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                                                Avoid deeply nested control flow statements.
                                                                                                                                                                                Open

                                                                                                                                                                                                        if ( !old ) {
                                                                                                                                                                                                            oldContext.removeAttribute( "id" );
                                                                                                                                                                                                        }
                                                                                                                                                                                Severity: Major
                                                                                                                                                                                Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                                                  Avoid deeply nested control flow statements.
                                                                                                                                                                                  Open

                                                                                                                                                                                                  } else if ( copy !== undefined ) {
                                                                                                                                                                                                      target[ name ] = copy;
                                                                                                                                                                                                  }
                                                                                                                                                                                  Severity: Major
                                                                                                                                                                                  Found in public/lib/jquery.js - About 45 mins to fix

                                                                                                                                                                                    Consider simplifying this complex logical expression.
                                                                                                                                                                                    Open

                                                                                                                                                                                                if ( (!special._default || special._default.call( elem, event ) === false) &&
                                                                                                                                                                                                    !isClick && !(target && target.nodeName && jQuery.noData[target.nodeName.toLowerCase()]) ) {
                                                                                                                                                                                    
                                                                                                                                                                                                    try {
                                                                                                                                                                                                        if ( target[ targetType ] ) {
                                                                                                                                                                                    Severity: Major
                                                                                                                                                                                    Found in public/lib/jquery.js - About 40 mins to fix

                                                                                                                                                                                      Consider simplifying this complex logical expression.
                                                                                                                                                                                      Open

                                                                                                                                                                                              if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML &&
                                                                                                                                                                                                      Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) {
                                                                                                                                                                                      
                                                                                                                                                                                                  ret = Sizzle.find( parts.shift(), context, contextXML );
                                                                                                                                                                                                  context = ret.expr ?
                                                                                                                                                                                      Severity: Major
                                                                                                                                                                                      Found in public/lib/jquery.js - About 40 mins to fix

                                                                                                                                                                                        Consider simplifying this complex logical expression.
                                                                                                                                                                                        Open

                                                                                                                                                                                                        if ( (e.keyCode === 13 && elem.nodeName.toLowerCase() !== "textarea") ||
                                                                                                                                                                                                            (e.keyCode === 32 && (type === "checkbox" || type === "radio")) ||
                                                                                                                                                                                                            type === "select-multiple" ) {
                                                                                                                                                                                                            testChange.call( this, e );
                                                                                                                                                                                                        }
                                                                                                                                                                                        Severity: Major
                                                                                                                                                                                        Found in public/lib/jquery.js - About 40 mins to fix

                                                                                                                                                                                          Consider simplifying this complex logical expression.
                                                                                                                                                                                          Open

                                                                                                                                                                                                  if ( (!id || (pvt && id && !cache[ id ][ internalKey ])) && getByName && data === undefined ) {
                                                                                                                                                                                                      return;
                                                                                                                                                                                                  }
                                                                                                                                                                                          Severity: Major
                                                                                                                                                                                          Found in public/lib/jquery.js - About 40 mins to fix

                                                                                                                                                                                            Consider simplifying this complex logical expression.
                                                                                                                                                                                            Open

                                                                                                                                                                                                    } else if ( typeof value === "string" && !rnocache.test( value ) &&
                                                                                                                                                                                                        (jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value )) &&
                                                                                                                                                                                                        !wrapMap[ (rtagName.exec( value ) || ["", ""])[1].toLowerCase() ] ) {
                                                                                                                                                                                            
                                                                                                                                                                                                        value = value.replace(rxhtmlTag, "<$1></$2>");
                                                                                                                                                                                            Severity: Major
                                                                                                                                                                                            Found in public/lib/jquery.js - About 40 mins to fix

                                                                                                                                                                                              Consider simplifying this complex logical expression.
                                                                                                                                                                                              Open

                                                                                                                                                                                              if ( jQuery.expr && jQuery.expr.filters ) {
                                                                                                                                                                                                  jQuery.expr.filters.hidden = function( elem ) {
                                                                                                                                                                                                      var width = elem.offsetWidth,
                                                                                                                                                                                                          height = elem.offsetHeight;
                                                                                                                                                                                              
                                                                                                                                                                                              
                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                              Found in public/lib/jquery.js - About 40 mins to fix

                                                                                                                                                                                                Consider simplifying this complex logical expression.
                                                                                                                                                                                                Open

                                                                                                                                                                                                    if ( event.liveFired === this || !events || !events.live || event.target.disabled || event.button && event.type === "click" ) {
                                                                                                                                                                                                        return;
                                                                                                                                                                                                    }
                                                                                                                                                                                                Severity: Major
                                                                                                                                                                                                Found in public/lib/jquery.js - About 40 mins to fix

                                                                                                                                                                                                  Consider simplifying this complex logical expression.
                                                                                                                                                                                                  Open

                                                                                                                                                                                                          if ( !s.crossDomain ) {
                                                                                                                                                                                                              parts = rurl.exec( s.url.toLowerCase() );
                                                                                                                                                                                                              s.crossDomain = !!( parts &&
                                                                                                                                                                                                                  ( parts[ 1 ] != ajaxLocParts[ 1 ] || parts[ 2 ] != ajaxLocParts[ 2 ] ||
                                                                                                                                                                                                                      ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? 80 : 443 ) ) !=
                                                                                                                                                                                                  Severity: Major
                                                                                                                                                                                                  Found in public/lib/jquery.js - About 40 mins to fix

                                                                                                                                                                                                    Function PSEUDO has 5 arguments (exceeds 4 allowed). Consider refactoring.
                                                                                                                                                                                                    Open

                                                                                                                                                                                                            PSEUDO: function( match, curLoop, inplace, result, not ) {
                                                                                                                                                                                                    Severity: Minor
                                                                                                                                                                                                    Found in public/lib/jquery.js - About 35 mins to fix

                                                                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                                                                      Open

                                                                                                                                                                                                                  return oldSizzle(query, context, extra, seed);
                                                                                                                                                                                                      Severity: Major
                                                                                                                                                                                                      Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                                                                        Open

                                                                                                                                                                                                                                    return rootjQuery.find( selector );
                                                                                                                                                                                                        Severity: Major
                                                                                                                                                                                                        Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                                                                          Open

                                                                                                                                                                                                                          return elem.style.cssText;
                                                                                                                                                                                                          Severity: Major
                                                                                                                                                                                                          Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                                                                            Open

                                                                                                                                                                                                                            return (context || rootjQuery).find( selector );
                                                                                                                                                                                                            Severity: Major
                                                                                                                                                                                                            Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                                                                                              Open

                                                                                                                                                                                                                                  return values;
                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                              Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                                                                                Open

                                                                                                                                                                                                                                    return this;
                                                                                                                                                                                                                Severity: Major
                                                                                                                                                                                                                Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                                                                                                  Open

                                                                                                                                                                                                                                      return elem.getAttribute("value") === null ? "on" : elem.value;
                                                                                                                                                                                                                  Severity: Major
                                                                                                                                                                                                                  Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                                                                                                    Open

                                                                                                                                                                                                                            return this.each(function(i) {
                                                                                                                                                                                                                                var self = jQuery(this), val = value;
                                                                                                                                                                                                                    
                                                                                                                                                                                                                                if ( this.nodeType !== 1 ) {
                                                                                                                                                                                                                                    return;
                                                                                                                                                                                                                    Severity: Major
                                                                                                                                                                                                                    Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                                                                                      Open

                                                                                                                                                                                                                                  return undefined;
                                                                                                                                                                                                                      Severity: Major
                                                                                                                                                                                                                      Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                                                                                        Open

                                                                                                                                                                                                                                        return undefined;
                                                                                                                                                                                                                        Severity: Major
                                                                                                                                                                                                                        Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                                                                                          Open

                                                                                                                                                                                                                                      return attr === null ? undefined : attr;
                                                                                                                                                                                                                          Severity: Major
                                                                                                                                                                                                                          Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                                                                                            Open

                                                                                                                                                                                                                                            return siblingCheck( ap[i], bp[i] );
                                                                                                                                                                                                                            Severity: Major
                                                                                                                                                                                                                            Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                                                                                                              Open

                                                                                                                                                                                                                                          return this.css( type, typeof size === "string" ? size : size + "px" );
                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                              Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                                                                                                Open

                                                                                                                                                                                                                                                        return ( diff % first === 0 && diff / first >= 0 );
                                                                                                                                                                                                                                Severity: Major
                                                                                                                                                                                                                                Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                                                                                                                  Open

                                                                                                                                                                                                                                                  return elem[ name ];
                                                                                                                                                                                                                                  Severity: Major
                                                                                                                                                                                                                                  Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                                                                                                                    Open

                                                                                                                                                                                                                                                            return diff === 0;
                                                                                                                                                                                                                                    Severity: Major
                                                                                                                                                                                                                                    Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                                                                                                      Open

                                                                                                                                                                                                                                                                  return makeArray( context.querySelectorAll( "[id='" + nid + "'] " + query ), extra );
                                                                                                                                                                                                                                      Severity: Major
                                                                                                                                                                                                                                      Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                                                                                                        Open

                                                                                                                                                                                                                                                return jQuery.makeArray( selector, this );
                                                                                                                                                                                                                                        Severity: Major
                                                                                                                                                                                                                                        Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                                                                                                          Open

                                                                                                                                                                                                                                                  return elem[ name ];
                                                                                                                                                                                                                                          Severity: Major
                                                                                                                                                                                                                                          Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                                                                                                            Open

                                                                                                                                                                                                                                                            return this.constructor( context ).find( selector );
                                                                                                                                                                                                                                            Severity: Major
                                                                                                                                                                                                                                            Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                                                                                                                              Open

                                                                                                                                                                                                                                                                      return true;
                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                              Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                                                                                                                Open

                                                                                                                                                                                                                                                                        return makeArray( context.querySelectorAll(query), extra );
                                                                                                                                                                                                                                                Severity: Major
                                                                                                                                                                                                                                                Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                                                                                                                                  Open

                                                                                                                                                                                                                                                              return jQuery.isNaN( ret ) ? orig : ret;
                                                                                                                                                                                                                                                  Severity: Major
                                                                                                                                                                                                                                                  Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                                                                                                                                    Open

                                                                                                                                                                                                                                                                return rootjQuery.ready( selector );
                                                                                                                                                                                                                                                    Severity: Major
                                                                                                                                                                                                                                                    Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                                                                                                                      Open

                                                                                                                                                                                                                                                              return { top: top, left: left };
                                                                                                                                                                                                                                                      Severity: Major
                                                                                                                                                                                                                                                      Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                                                                                                                        Open

                                                                                                                                                                                                                                                                        return (elem.value || "").replace(rreturn, "");
                                                                                                                                                                                                                                                        Severity: Major
                                                                                                                                                                                                                                                        Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                                                                                                                          Open

                                                                                                                                                                                                                                                                  return i === al ?
                                                                                                                                                                                                                                                                      siblingCheck( a, bp[i], -1 ) :
                                                                                                                                                                                                                                                                      siblingCheck( ap[i], b, 1 );
                                                                                                                                                                                                                                                          Severity: Major
                                                                                                                                                                                                                                                          Found in public/lib/jquery.js - About 30 mins to fix

                                                                                                                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                                                                                                                            Open

                                                                                                                                                                                                                                                                                        return makeArray( [], extra );
                                                                                                                                                                                                                                                            Severity: Major
                                                                                                                                                                                                                                                            Found in public/lib/jquery.js - About 30 mins to fix

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

                                                                                                                                                                                                                                                                      "": function(checkSet, part, isXML){
                                                                                                                                                                                                                                                                          var nodeCheck,
                                                                                                                                                                                                                                                                              doneName = done++,
                                                                                                                                                                                                                                                                              checkFn = dirCheck;
                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                                              Found in public/lib/jquery.js and 1 other location - About 3 hrs to fix
                                                                                                                                                                                                                                                              public/lib/jquery.js on lines 3729..3741

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

                                                                                                                                                                                                                                                              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

                                                                                                                                                                                                                                                                      "~": function( checkSet, part, isXML ) {
                                                                                                                                                                                                                                                                          var nodeCheck,
                                                                                                                                                                                                                                                                              doneName = done++,
                                                                                                                                                                                                                                                                              checkFn = dirCheck;
                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                                              Found in public/lib/jquery.js and 1 other location - About 3 hrs to fix
                                                                                                                                                                                                                                                              public/lib/jquery.js on lines 3715..3727

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

                                                                                                                                                                                                                                                              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

                                                                                                                                                                                                                                                                      if ( jQuery.isFunction(value) ) {
                                                                                                                                                                                                                                                                          return this.each(function(i) {
                                                                                                                                                                                                                                                                              var self = jQuery(this);
                                                                                                                                                                                                                                                                              self.addClass( value.call(this, i, self.attr("class")) );
                                                                                                                                                                                                                                                                          });
                                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                                              Found in public/lib/jquery.js and 1 other location - About 1 hr to fix
                                                                                                                                                                                                                                                              public/lib/jquery.js on lines 1811..1816

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

                                                                                                                                                                                                                                                              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

                                                                                                                                                                                                                                                                      if ( jQuery.isFunction(value) ) {
                                                                                                                                                                                                                                                                          return this.each(function(i) {
                                                                                                                                                                                                                                                                              var self = jQuery(this);
                                                                                                                                                                                                                                                                              self.removeClass( value.call(this, i, self.attr("class")) );
                                                                                                                                                                                                                                                                          });
                                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                                              Found in public/lib/jquery.js and 1 other location - About 1 hr to fix
                                                                                                                                                                                                                                                              public/lib/jquery.js on lines 1775..1780

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

                                                                                                                                                                                                                                                              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

                                                                                                                                                                                                                                                                          event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc && doc.clientLeft || body && body.clientLeft || 0);
                                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                                              Found in public/lib/jquery.js and 1 other location - About 1 hr to fix
                                                                                                                                                                                                                                                              public/lib/jquery.js on lines 2621..2621

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

                                                                                                                                                                                                                                                              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

                                                                                                                                                                                                                                                                      if ( jQuery.isFunction( size ) ) {
                                                                                                                                                                                                                                                                          return this.each(function( i ) {
                                                                                                                                                                                                                                                                              var self = jQuery( this );
                                                                                                                                                                                                                                                                              self[ type ]( size.call( this, i, self[ type ]() ) );
                                                                                                                                                                                                                                                                          });
                                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                                              Found in public/lib/jquery.js and 1 other location - About 1 hr to fix
                                                                                                                                                                                                                                                              public/lib/jquery.js on lines 5033..5039

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

                                                                                                                                                                                                                                                              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

                                                                                                                                                                                                                                                                      if ( jQuery.isFunction(text) ) {
                                                                                                                                                                                                                                                                          return this.each(function(i) {
                                                                                                                                                                                                                                                                              var self = jQuery( this );
                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                              self.text( text.call(this, i, self.text()) );
                                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                                              Found in public/lib/jquery.js and 1 other location - About 1 hr to fix
                                                                                                                                                                                                                                                              public/lib/jquery.js on lines 8276..8281

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

                                                                                                                                                                                                                                                              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

                                                                                                                                                                                                                                                                          event.pageY = event.clientY + (doc && doc.scrollTop  || body && body.scrollTop  || 0) - (doc && doc.clientTop  || body && body.clientTop  || 0);
                                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                                              Found in public/lib/jquery.js and 1 other location - About 1 hr to fix
                                                                                                                                                                                                                                                              public/lib/jquery.js on lines 2620..2620

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

                                                                                                                                                                                                                                                              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

                                                                                                                                                                                                                                                                      if ( jQuery.isFunction( html ) ) {
                                                                                                                                                                                                                                                                          return this.each(function(i) {
                                                                                                                                                                                                                                                                              jQuery(this).wrapInner( html.call(this, i) );
                                                                                                                                                                                                                                                                          });
                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                                              Found in public/lib/jquery.js and 1 other location - About 1 hr to fix
                                                                                                                                                                                                                                                              public/lib/jquery.js on lines 5049..5053

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

                                                                                                                                                                                                                                                              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

                                                                                                                                                                                                                                                                      if ( jQuery.isFunction( html ) ) {
                                                                                                                                                                                                                                                                          return this.each(function(i) {
                                                                                                                                                                                                                                                                              jQuery(this).wrapAll( html.call(this, i) );
                                                                                                                                                                                                                                                                          });
                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                              Severity: Major
                                                                                                                                                                                                                                                              Found in public/lib/jquery.js and 1 other location - About 1 hr to fix
                                                                                                                                                                                                                                                              public/lib/jquery.js on lines 5078..5082

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

                                                                                                                                                                                                                                                              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

                                                                                                                                                                                                                                                                      if ( fn ) {
                                                                                                                                                                                                                                                                          proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++;
                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                              Severity: Minor
                                                                                                                                                                                                                                                              Found in public/lib/jquery.js and 1 other location - About 30 mins to fix
                                                                                                                                                                                                                                                              public/lib/jquery-ui.js on lines 743..746

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

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

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

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

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

                                                                                                                                                                                                                                                              Refactorings

                                                                                                                                                                                                                                                              Further Reading

                                                                                                                                                                                                                                                              There are no issues that match your filters.

                                                                                                                                                                                                                                                              Category
                                                                                                                                                                                                                                                              Status