jiskattema/spot

View on GitHub

Showing 2,641 of 2,641 total issues

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

  chartjsConfig: function () {
    return {
      type: 'horizontalBarError',
      data: {
        datasets: [],
Severity: Minor
Found in src/widgets/models/horizontalbarchart.js - About 1 hr to fix

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

    function initChart (view) {
      // Configure plot
      view._config = view.model.scatterConfig();
    
      var filter = view.model.filter;
    Severity: Minor
    Found in src/widgets/views/scatter.js - About 1 hr to fix

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

        startHelp: function () {
      
          console.log(app.currentPage.helpTemplate);
          console.log(app.currentPage.helpHints);
          console.log(app.currentPage.helpSteps);
      Severity: Minor
      Found in src/app.js - About 1 hr to fix

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

          initialize: function () {
            this.slots.reset([
              {
                description: 'X axis',
                type: 'partition',
        Severity: Minor
        Found in src/widgets/models/linechart.js - About 1 hr to fix

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

              determineDataLimits: function () {
                var me = this;
                me.labelMoments = [];
          
                // Get min max from labels
          Severity: Minor
          Found in src/widgets/chartjs-duration-scale.js - About 1 hr to fix

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

              chartjsConfig: function () {
                return {
                  type: 'barError',
                  data: {
                    datasets: [],
            Severity: Minor
            Found in src/widgets/models/barchart.js - About 1 hr to fix

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

                initialize: function () {
                  this.slots.reset([
                    {
                      description: 'X axis',
                      type: 'partition',
              Severity: Minor
              Found in src/widgets/models/bubbleplot.js - About 1 hr to fix

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

                    reader.onload = function (ev) {
                      app.message({
                        text: 'Processing',
                        type: 'ok'
                      });
                Severity: Minor
                Found in src/app.js - About 1 hr to fix

                  Function update has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function update (view) {
                    if (!view.isInitialized) {
                      console.warn('Cannot update chart, not initialized', view);
                      return;
                    }
                  Severity: Minor
                  Found in src/widgets/views/chartjs.js - About 1 hr 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

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

                            xAxes: [{
                              type: 'linear',
                              position: 'bottom',
                              gridLines: {
                                zeroLineColor: 'rgba(0,255,0,1)'
                  Severity: Major
                  Found in src/widgets/models/bubbleplot.js and 1 other location - About 1 hr to fix
                  src/widgets/models/bubbleplot.js on lines 106..120

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

                  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

                      } else if (partition.isDuration) {
                        options.scales.xAxes[0].type = 'spot-duration';
                      } else if (partition.isCategorial) {
                        options.scales.xAxes[0].type = 'category';
                      }
                  Severity: Major
                  Found in src/widgets/views/chartjs.js and 1 other location - About 1 hr to fix
                  src/widgets/views/chartjs1d.js on lines 42..46

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

                  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

                            yAxes: [{
                              type: 'linear',
                              position: 'left',
                              gridLines: {
                                zeroLineColor: 'rgba(0,255,0,1)'
                  Severity: Major
                  Found in src/widgets/models/bubbleplot.js and 1 other location - About 1 hr to fix
                  src/widgets/models/bubbleplot.js on lines 91..105

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

                  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 (partitionA.isDatetime) {
                      options.scales.xAxes[0].type = 'time';
                    } else if (partitionA.isDuration) {
                      options.scales.xAxes[0].type = 'spot-duration';
                    }
                  Severity: Major
                  Found in src/widgets/views/chartjs1d.js and 1 other location - About 1 hr to fix
                  src/widgets/views/chartjs.js on lines 94..98

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

                  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

                  Consider simplifying this complex logical expression.
                  Open

                      if (i >= 0 && j >= 0 && group.aa !== misval && group.bb !== misval && group.count !== 0) {
                        // initialize if necessary
                        chartData.datasets[0].data[d] = chartData.datasets[0].data[d] || {};
                        chartData.datasets[0].error[d] = chartData.datasets[0].error[d] || {};
                  
                  
                  Severity: Critical
                  Found in src/widgets/views/chartjs2d.js - About 1 hr to fix

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

                        draw: function () {
                          var ctx = this._chart.ctx;
                          var vm = this._view;
                    
                          if (vm.direction === 'none') {
                    Severity: Minor
                    Found in src/widgets/chartjs-errorbars.js - About 1 hr to fix

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

                        render: function () {
                          // Reset the CSV parsing dialog.
                          // NOTE: we could do this via bindings, but this is easier (less code)
                          this.renderWithTemplate(this);
                          this.query('#CSV-header-columns').checked = app.CSVHeaders;
                      Severity: Minor
                      Found in src/pages/datasets.js - About 1 hr to fix

                        Function render has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                        Open

                          render: function () {
                            // Reset the CSV parsing dialog.
                            // NOTE: we could do this via bindings, but this is easier (less code)
                            this.renderWithTemplate(this);
                            this.query('#CSV-header-columns').checked = app.CSVHeaders;
                        Severity: Minor
                        Found in src/pages/datasets.js - About 1 hr 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 fn has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                        Open

                              fn: function () {
                                var filter = this.collection.parent.filter;
                        
                                // stop accepting DND
                                if (this._sortable) {
                        Severity: Minor
                        Found in src/pages/analyze/slot.js - About 1 hr 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

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

                          chartjsConfig: function () {
                            return {
                              type: 'radar',
                              data: {
                                datasets: [],
                        Severity: Major
                        Found in src/widgets/models/radarchart.js and 1 other location - About 1 hr to fix
                        src/widgets/models/piechart.js on lines 28..44

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

                        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

                          chartjsConfig: function () {
                            return {
                              type: 'pie',
                              data: {
                                datasets: [],
                        Severity: Major
                        Found in src/widgets/models/piechart.js and 1 other location - About 1 hr to fix
                        src/widgets/models/radarchart.js on lines 21..37

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

                        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