creative-connections/aurelia-bodylight-plugin

View on GitHub

Showing 366 of 552 total issues

Avoid deeply nested control flow statements.
Open

                if (num_ok) {
                    rollingData[i] = [originalData[i][0], sum / num_ok];
                } else {
                    rollingData[i] = [originalData[i][0], null];
                }
Severity: Major
Found in src/utils/dygraph.js - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

                for (j = 1; j < inFields.length; j++) {
                    var val = inFields[j];
                    if (/^ *$/.test(val)) {
                        fields[j] = [null, null, null];
                    } else {
    Severity: Major
    Found in src/utils/dygraph.js - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                  for (j = 1; j < inFields.length; j++) {
                      fields[j] = this.parseFloat_(inFields[j], i, line);
                  }
      Severity: Major
      Found in src/utils/dygraph.js - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                            if (!isNaN(prevX)) {
                                if (stepPlot) {
                                    ctx.moveTo(prevX, newYs[0]);
                                } else {
                                    ctx.moveTo(prevX, prevYs[0]);
        Severity: Major
        Found in src/utils/dygraph.js - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                          if (point.name == setName) { // TODO(klausw): this is always true
                              if (!Dygraph.isOK(point.y)) {
                                  prevX = NaN;
                                  continue;
                              }
          Severity: Major
          Found in src/utils/dygraph.js - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                for (i = datasets.length - 1; i >= 0; i--) {
                                    if (!datasets[i]) continue;
                                    datasets[i][j][1] = NaN;
                                }
            Severity: Major
            Found in src/utils/dygraph.js - About 45 mins to fix

              Function setInputVariables has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                setInputVariables() {
                  for (let key in this.changeinputs) {
                    let myinputs = this.changeinputs[key];
                    //console.log('changing inputs', myinputs);
                    //set real - reference is in - one input one reference
              Severity: Minor
              Found in src/elements/fmi.js - About 45 mins 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

              Avoid deeply nested control flow statements.
              Open

                              if (cumulative_y[x] > seriesExtremes[1]) {
                                  seriesExtremes[1] = cumulative_y[x];
                              }
              Severity: Major
              Found in src/utils/dygraph.js - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                                if (cumulative_y[x] < seriesExtremes[0]) {
                                    seriesExtremes[0] = cumulative_y[x];
                                }
                Severity: Major
                Found in src/utils/dygraph.js - About 45 mins to fix

                  Avoid deeply nested control flow statements.
                  Open

                                if (window.bodylightnavopenhide) window.bodylightnavopenhide(currentnavitem.parentNode.parentNode.previousSibling);
                  Severity: Major
                  Found in src/elements/markdown-top-nav.js - About 45 mins to fix

                    Avoid deeply nested control flow statements.
                    Open

                                    if (cumulative_y[x] === undefined) {
                                        cumulative_y[x] = 0;
                                    }
                    Severity: Major
                    Found in src/utils/dygraph.js - About 45 mins to fix

                      Avoid deeply nested control flow statements.
                      Open

                                          if (maxY < 0) maxAxisY = 0;
                      Severity: Major
                      Found in src/utils/dygraph.js - About 45 mins to fix

                        Avoid deeply nested control flow statements.
                        Open

                                        if (num_ok) {
                                            stddev = Math.sqrt(variance) / num_ok;
                                            rollingData[i] = [originalData[i][0],
                                                [sum / num_ok, sigma * stddev, sigma * stddev]];
                                        } else {
                        Severity: Major
                        Found in src/utils/dygraph.js - About 45 mins to fix

                          Avoid deeply nested control flow statements.
                          Open

                                              if (attrs[property].hasOwnProperty(subProperty) && !pixelSafeOptions[subProperty]) {
                                                  requiresNewPoints = true;
                                              }
                          Severity: Major
                          Found in src/utils/dygraph.js - About 45 mins to fix

                            Avoid deeply nested control flow statements.
                            Open

                                                if (lastDisplayed === null) {
                                                    lastDisplayed = {
                                                        tickValue: tickValue,
                                                        pixel_coord: pixel_coord
                                                    };
                            Severity: Major
                            Found in src/utils/dygraph.js - About 45 mins to fix

                              Avoid deeply nested control flow statements.
                              Open

                                              if (dx > 0) {
                                                  var r = (p1.canvasx - domX) / dx;
                                                  py += r * (p0.canvasy - p1.canvasy);
                                              }
                              Severity: Major
                              Found in src/utils/dygraph.js - About 45 mins to fix

                                Avoid deeply nested control flow statements.
                                Open

                                                    if (requiresNewPoints) {
                                                        break;
                                                    }
                                Severity: Major
                                Found in src/utils/dygraph.js - About 45 mins to fix

                                  Avoid deeply nested control flow statements.
                                  Open

                                                      if (g == 7) {  // one week
                                                          d.setDate(d.getDate() - d.getDay());
                                                      }
                                  Severity: Major
                                  Found in src/utils/dygraph.js - About 45 mins to fix

                                    Function download has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                                    Open

                                      download() {
                                        //ask for filename
                                        let filename = prompt('File name (*.csv):', 'data.csv');
                                        if (filename) {
                                          //adds csv as extension
                                    Severity: Minor
                                    Found in src/elements/chartjs.js - About 45 mins to fix

                                    Cognitive Complexity

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

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

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

                                    Further reading

                                    Function showhidefull has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                                    Open

                                        showhidefull() {
                                          this.nav = ! this.nav;
                                          if (! this.nav) {
                                            if (document.documentElement.requestFullscreen) {
                                              document.documentElement.requestFullscreen();
                                    Severity: Minor
                                    Found in src/elements/markdown-top-nav.js - About 45 mins 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

                                    Severity
                                    Category
                                    Status
                                    Source
                                    Language