dhgwilliam/google-voice-stats

View on GitHub

Showing 371 of 371 total issues

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

  d3.layout.stack = function() {
    function stack(data, index) {
      var series = data.map(function(d, i) {
        return values.call(stack, d, i);
      });
Severity: Major
Found in public/js/d3.v2.js - About 2 hrs to fix

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

        force.start = function() {
          function position(dimension, size) {
            var neighbors = neighbor(i), j = -1, m = neighbors.length, x;
            while (++j < m) if (!isNaN(x = neighbors[j][dimension])) return x;
            return Math.random() * size;
    Severity: Major
    Found in public/js/d3.v2.js - About 2 hrs to fix

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

        d3.nest = function() {
          function map(array, depth) {
            if (depth >= keys.length) return rollup ? rollup.call(nest, array) : sortValues ? array.sort(sortValues) : array;
            var i = -1, n = array.length, key = keys[depth++], keyValue, object, valuesByKey = new d3_Map, values, o = {};
            while (++i < n) {
      Severity: Major
      Found in public/js/d3.v2.js - About 2 hrs to fix

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

            function redrawY(g) {
              g.select(".extent").attr("y", extent[0][1]);
              g.selectAll(".extent,.e>rect,.w>rect").attr("height", extent[1][1] - extent[0][1]);
            }
        Severity: Major
        Found in public/js/d3.v2.js and 1 other location - About 2 hrs to fix
        public/js/d3.v2.js on lines 4549..4552

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 77.

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

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

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

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

        Refactorings

        Further Reading

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

            function redrawX(g) {
              g.select(".extent").attr("x", extent[0][0]);
              g.selectAll(".extent,.n>rect,.s>rect").attr("width", extent[1][0] - extent[0][0]);
            }
        Severity: Major
        Found in public/js/d3.v2.js and 1 other location - About 2 hrs to fix
        public/js/d3.v2.js on lines 4553..4556

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 77.

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

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

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

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

        Refactorings

        Further Reading

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

            remove: function( elem, types, handler, selector, mappedTypes ) {
        
                var elemData = jQuery.hasData( elem ) && jQuery._data( elem ),
                    t, tns, type, origType, namespaces, origCount,
                    j, events, special, handle, eventType, handleObj;
        Severity: Major
        Found in public/js/jquery.js - About 2 hrs to fix

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

              step: function( gotoEnd ) {
                  var p, n, complete,
                      t = fxNow || createFxNow(),
                      done = true,
                      elem = this.elem,
          Severity: Minor
          Found in public/js/jquery.js - About 2 hrs to fix

            Consider simplifying this complex logical expression.
            Open

                            if ( ( mappedTypes || origType === handleObj.origType ) &&
                                 ( !handler || handler.guid === handleObj.guid ) &&
                                 ( !namespaces || namespaces.test( handleObj.namespace ) ) &&
                                 ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
                                eventType.splice( j--, 1 );
            Severity: Critical
            Found in public/js/jquery.js - About 2 hrs to fix

              Consider simplifying this complex logical expression.
              Open

                  if ( args.length === 1 && typeof first === "string" && first.length < 512 && doc === document &&
                      first.charAt(0) === "<" && !rnocache.test( first ) &&
                      (jQuery.support.checkClone || !rchecked.test( first )) &&
                      (jQuery.support.html5Clone || !rnoshimcache.test( first )) ) {
              
              
              Severity: Critical
              Found in public/js/jquery.js - About 2 hrs to fix

                Function d3_scale_linear has 50 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  function d3_scale_linear(domain, range, interpolate, clamp) {
                    function rescale() {
                      var linear = Math.min(domain.length, range.length) > 2 ? d3_scale_polylinear : d3_scale_bilinear, uninterpolate = clamp ? d3_uninterpolateClamp : d3_uninterpolateNumber;
                      output = linear(domain, range, uninterpolate, interpolate);
                      input = linear(range, domain, uninterpolate, d3.interpolate);
                Severity: Minor
                Found in public/js/d3.v2.js - About 2 hrs to fix

                  Function chord has 50 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    d3.svg.chord = function() {
                      function chord(d, i) {
                        var s = subgroup(this, source, d, i), t = subgroup(this, target, d, i);
                        return "M" + s.p0 + arc(s.r, s.p1, s.a1 - s.a0) + (equals(s, t) ? curve(s.r, s.p1, s.r, s.p0) : curve(s.r, s.p1, t.r, t.p0) + arc(t.r, t.p1, t.a1 - t.a0) + curve(t.r, t.p1, s.r, s.p0)) + "Z";
                      }
                  Severity: Minor
                  Found in public/js/d3.v2.js - About 2 hrs to fix

                    Function interpolateTransform has 50 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      d3.interpolateTransform = function(a, b) {
                        var s = [], q = [], n, A = d3.transform(a), B = d3.transform(b), ta = A.translate, tb = B.translate, ra = A.rotate, rb = B.rotate, wa = A.skew, wb = B.skew, ka = A.scale, kb = B.scale;
                        if (ta[0] != tb[0] || ta[1] != tb[1]) {
                          s.push("translate(", null, ",", null, ")");
                          q.push({
                    Severity: Minor
                    Found in public/js/d3.v2.js - About 2 hrs to fix

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

                              CHILD: function( elem, match ) {
                                  var first, last,
                                      doneName, parent, cache,
                                      count, diff,
                                      type = match[1],
                      Severity: Minor
                      Found in public/js/jquery.js - About 1 hr to fix

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

                          function d3_scale_log(linear, log) {
                            function scale(x) {
                              return linear(log(x));
                            }
                            var pow = log.pow;
                        Severity: Minor
                        Found in public/js/d3.v2.js - About 1 hr to fix

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

                            d3.geo.bonne = function() {
                              function bonne(coordinates) {
                                var x = coordinates[0] * d3_geo_radians - x0, y = coordinates[1] * d3_geo_radians - y0;
                                if (y1) {
                                  var p = c1 + y1 - y, E = x * Math.cos(y) / p;
                          Severity: Minor
                          Found in public/js/d3.v2.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/js/jquery.js - About 1 hr 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/js/jquery.js - About 1 hr to fix

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

                                  function d3_time_interval(local, step, number) {
                                    function round(date) {
                                      var d0 = local(date), d1 = offset(d0, 1);
                                      return date - d0 < d1 - date ? d0 : d1;
                                    }
                                Severity: Minor
                                Found in public/js/d3.v2.js - About 1 hr to fix

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

                                      function mousedown() {
                                        function point() {
                                          var p = target.parentNode;
                                          return touchId ? d3.touches(p).filter(function(p) {
                                            return p.identifier === touchId;
                                  Severity: Minor
                                  Found in public/js/d3.v2.js - About 1 hr to fix

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

                                      d3.layout.pie = function() {
                                        function pie(data, i) {
                                          var values = data.map(function(d, i) {
                                            return +value.call(pie, d, i);
                                          });
                                    Severity: Minor
                                    Found in public/js/d3.v2.js - About 1 hr to fix
                                      Severity
                                      Category
                                      Status
                                      Source
                                      Language