patternfly/angular-patternfly

View on GitHub
src/charts/topology-map/topologyMap.component.js

Summary

Maintainability
F
1 wk
Test Coverage

Function controller has 558 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  controller: function  ($element, pfUtils, $scope, $window, $q) {
    'use strict';
    var ctrl = this;
    ctrl.canvas = null;
    ctrl.showNodeLabels = false;
Severity: Major
Found in src/charts/topology-map/topologyMap.component.js - About 2 days to fix

    Function controller has a Cognitive Complexity of 137 (exceeds 5 allowed). Consider refactoring.
    Open

      controller: function  ($element, pfUtils, $scope, $window, $q) {
        'use strict';
        var ctrl = this;
        ctrl.canvas = null;
        ctrl.showNodeLabels = false;
    Severity: Minor
    Found in src/charts/topology-map/topologyMap.component.js - About 2 days to fix

    Cognitive Complexity

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

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

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

    Further reading

    File topologyMap.component.js has 575 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    angular.module('patternfly.charts').component('pfTopologyMap', {
      bindings: {
        nodes: '<',
        edges: '<',
        selectNode: '&',
    Severity: Major
    Found in src/charts/topology-map/topologyMap.component.js - About 1 day to fix

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

          ctrl.drawNodes = function () {
            var coordinates;
            ctrl.nodes.forEach(function (node) {
              var imgR = node.size * 0.7;
              var highlight = ctrl.shouldHighlightNode(node);
      Severity: Minor
      Found in src/charts/topology-map/topologyMap.component.js - About 1 hr to fix

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

            ctrl.setUpTooltips = function () {
              var canvas = d3.select(ctrl.canvas);
              if (ctrl.tooltipStyle) {
                ctrl.tooltipStyle = {
                  size: ctrl.tooltipStyle.size || 12,
        Severity: Minor
        Found in src/charts/topology-map/topologyMap.component.js - About 1 hr to fix

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

              ctrl.loadIcons = function () {
                var tmp = document.createElement('i');
                var char = '';
                var promises = [];
                var questionCode = ctrl.findIconUnicode('fa fa-question');
          Severity: Minor
          Found in src/charts/topology-map/topologyMap.component.js - About 1 hr to fix

            Function setUpSelection has 36 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                ctrl.setUpSelection = function () {
                  var canvas = d3.select(ctrl.canvas);
                  canvas.on('click', click);
                  function click () {
                    var node;
            Severity: Minor
            Found in src/charts/topology-map/topologyMap.component.js - About 1 hr to fix

              Function drawEdges has 33 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  ctrl.drawEdges = function () {
                    var quadtree = d3.geom.quadtree(ctrl.force.nodes());
                    ctrl.context.strokeStyle = 'rgba(150, 150, 150, 0.6)';
                    ctrl.context.lineWidth = 1;
                    ctrl.edges.forEach(function (d) {
              Severity: Minor
              Found in src/charts/topology-map/topologyMap.component.js - About 1 hr to fix

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

                      function click () {
                        var node;
                        var edge;
                        var addKey = ctrl.ctrlKey();
                        if (d3.event.defaultPrevented) {
                Severity: Minor
                Found in src/charts/topology-map/topologyMap.component.js - About 1 hr to fix

                  Consider simplifying this complex logical expression.
                  Open

                        if (ctrl.tooltipStyle) {
                          ctrl.tooltipStyle = {
                            size: ctrl.tooltipStyle.size || 12,
                            font: ctrl.tooltipStyle.font || '"Open Sans", Helvetica, Arial, sans-serif',
                            textColor: ctrl.tooltipStyle.textColor || '#FFFFFF',
                  Severity: Major
                  Found in src/charts/topology-map/topologyMap.component.js - About 1 hr to fix

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

                      controller: function  ($element, pfUtils, $scope, $window, $q) {
                    Severity: Minor
                    Found in src/charts/topology-map/topologyMap.component.js - About 35 mins to fix

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

                              if (highlight) {
                                ctrl.context.shadowBlur = 15;
                                ctrl.context.shadowOffsetX = 3;
                                ctrl.context.shadowOffsetY = 3;
                                ctrl.context.shadowColor = "rgba(0, 0, 0, 0.5)";
                      Severity: Major
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 2 hrs to fix
                      src/charts/topology-map/topologyMap.component.js on lines 412..419

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

                      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 (highlight) {
                                ctrl.context.shadowBlur = 20;
                                ctrl.context.shadowOffsetX = 5;
                                ctrl.context.shadowOffsetY = 5;
                                ctrl.context.shadowColor = "rgba(0, 0, 0, 0.5)";
                      Severity: Major
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 2 hrs to fix
                      src/charts/topology-map/topologyMap.component.js on lines 371..378

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

                      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

                                translateY = Math.min(0, Math.max(ctrl.zoom.translate()[1], ctrl.canvasH - ctrl.canvasH * ctrl.zoom.scale()));
                      Severity: Major
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 1 hr to fix
                      src/charts/topology-map/topologyMap.component.js on lines 278..278

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

                      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

                                translateX = Math.min(0, Math.max(ctrl.zoom.translate()[0], ctrl.canvasW - ctrl.canvasW * ctrl.zoom.scale()));
                      Severity: Major
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 1 hr to fix
                      src/charts/topology-map/topologyMap.component.js on lines 279..279

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

                      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

                            node.y = Math.max(node.size + 1, Math.min(ctrl.canvasH - node.size - 1, node.y));
                      Severity: Major
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 1 hr to fix
                      src/charts/topology-map/topologyMap.component.js on lines 389..389

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

                      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

                            node.x = Math.max(node.size + 1, Math.min(ctrl.canvasW - node.size - 1, node.x));
                      Severity: Major
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 1 hr to fix
                      src/charts/topology-map/topologyMap.component.js on lines 390..390

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

                      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

                                ctrl.highlightEdge = ctrl.pointOverEdge.apply(this, ctrl.getRealCoordinates(d3.event.offsetX, d3.event.offsetY));
                      Severity: Minor
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 40 mins to fix
                      src/charts/topology-map/topologyMap.component.js on lines 91..91

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

                      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

                              ctrl.tooltip = ctrl.findNode.apply(this, ctrl.getRealCoordinates(d3.event.offsetX, d3.event.offsetY));
                      Severity: Minor
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 40 mins to fix
                      src/charts/topology-map/topologyMap.component.js on lines 93..93

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

                      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 (!ctrl.showNodeLabels && ctrl.tooltip && ctrl.tooltip.title) {
                              ctrl.drawNodeTooltip(ctrl.tooltip);
                            }
                      Severity: Minor
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 40 mins to fix
                      src/charts/topology-map/topologyMap.component.js on lines 306..308

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

                      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 (!ctrl.showEdgeLabels && ctrl.highlightEdge && ctrl.highlightEdge.title) {
                              ctrl.drawEdgeTooltip(ctrl.highlightEdge);
                            }
                      Severity: Minor
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 40 mins to fix
                      src/charts/topology-map/topologyMap.component.js on lines 303..305

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

                      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

                              edge.target = _.findIndex(ctrl.nodes, function (node) {
                                return node.id === edge.target;
                              });
                      Severity: Minor
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 30 mins to fix
                      src/charts/topology-map/topologyMap.component.js on lines 327..329

                      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

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

                              edge.source = _.findIndex(ctrl.nodes, function (node) {
                                return node.id === edge.source;
                              });
                      Severity: Minor
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 30 mins to fix
                      src/charts/topology-map/topologyMap.component.js on lines 330..332

                      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

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

                                edge = ctrl.pointOverEdge.apply(this, ctrl.getRealCoordinates(d3.event.offsetX, d3.event.offsetY));
                      Severity: Minor
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 30 mins to fix
                      src/charts/topology-map/topologyMap.component.js on lines 144..144

                      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

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

                              node = ctrl.findNode.apply(this, ctrl.getRealCoordinates(d3.event.offsetX, d3.event.offsetY));
                      Severity: Minor
                      Found in src/charts/topology-map/topologyMap.component.js and 1 other location - About 30 mins to fix
                      src/charts/topology-map/topologyMap.component.js on lines 148..148

                      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