shuoyao/BirdGo

View on GitHub

Showing 169 of 169 total issues

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

        function done( status, nativeStatusText, responses, headers ) {
            var isSuccess, success, error, response, modified,
                statusText = nativeStatusText;

            // Called once

    Consider simplifying this complex logical expression.
    Open

                            if ( forward && useCache ) {
    
                                // Seek `elem` from a previously-cached index
    
                                // ...in a gzip-friendly way

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

                      send: function( headers, complete ) {
                          var i,
                              xhr = options.xhr(),
                              id = ++xhrId;
      
      

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

        function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
            if ( postFilter && !postFilter[ expando ] ) {
                postFilter = setMatcher( postFilter );
            }
            if ( postFinder && !postFinder[ expando ] ) {

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

                  superMatcher = function( seed, context, xml, results, outermost ) {
                      var elem, j, matcher,
                          matchedCount = 0,
                          i = "0",
                          unmatched = seed && [],

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

            function markTheseData(data) {
              map = document.map
              map.clearOverlays();
            
              for (var i = 0; i < data.length; i++) {
            Severity: Major
            Found in app/assets/javascripts/explorer/init_map.js - About 2 hrs to fix

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

              function domManip( collection, args, callback, ignored ) {
              
                  // Flatten any nested arrays
                  args = concat.apply( [], args );
              
              

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

                    init = jQuery.fn.init = function( selector, context, root ) {
                        var match, elem;
                
                        // HANDLE: $(""), $(null), $(undefined), $(false)
                        if ( !selector ) {

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

                      Deferred: function( func ) {
                          var tuples = [
                  
                                  // action, add listener, listener list, final state
                                  [ "resolve", "done", jQuery.Callbacks( "once memory" ), "resolved" ],

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

                        handleRemote: function(element) {
                          var method, url, data, withCredentials, dataType, options;
                    
                          if (rails.fire(element, 'ajax:before')) {
                            withCredentials = element.data('with-credentials') || null;

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

                      function ajaxConvert( s, response, jqXHR, isSuccess ) {
                          var conv2, current, conv, tmp, prev,
                              converters = {},
                      
                              // Work with a copy of dataTypes in case we need to modify it for conversion

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

                            remove: function( elem, types, handler, selector, mappedTypes ) {
                                var j, handleObj, tmp,
                                    origCount, t, events,
                                    special, handlers, type,
                                    namespaces, origType,

                          Consider simplifying this complex logical expression.
                          Open

                                          if ( ( mappedTypes || origType === handleObj.origType ) &&
                                              ( !handler || handler.guid === handleObj.guid ) &&
                                              ( !tmp || tmp.test( handleObj.namespace ) ) &&
                                              ( !selector || selector === handleObj.selector ||
                                                  selector === "**" && handleObj.selector ) ) {

                            Function internalRemoveData has 49 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                            function internalRemoveData( elem, name, pvt ) {
                                if ( !acceptData( elem ) ) {
                                    return;
                                }
                            
                            

                              Function internalData has 48 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                              function internalData( elem, name, data, pvt /* Internal Use Only */ ) {
                                  if ( !acceptData( elem ) ) {
                                      return;
                                  }
                              
                              

                                Function select has 47 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                select = Sizzle.select = function( selector, context, results, seed ) {
                                    var i, tokens, token, type, find,
                                        compiled = typeof selector === "function" && selector,
                                        match = !seed && tokenize( (selector = compiled.selector || selector) );
                                
                                

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

                                  function matcherFromTokens( tokens ) {
                                      var checkContext, matcher, j,
                                          len = tokens.length,
                                          leadingRelative = Expr.relative[ tokens[0].type ],
                                          implicitRelative = leadingRelative || Expr.relative[" "],

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

                                    tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
                                        var matched, match, tokens, type,
                                            soFar, groups, preFilters,
                                            cached = tokenCache[ selector + " " ];
                                    
                                    

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

                                          val: function( value ) {
                                              var hooks, ret, isFunction,
                                                  elem = this[ 0 ];
                                      
                                              if ( !arguments.length ) {

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

                                                        event.pageX = original.clientX +
                                                            ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) -
                                                            ( doc && doc.clientLeft || body && body.clientLeft || 0 );
                                        public/assets/application-b34af937661b1e622cea2d933ff65194efa8c7968c100e4a1364a2a317ea4460.js on lines 5382..5384

                                        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

                                        Severity
                                        Category
                                        Status
                                        Source
                                        Language