kotojs/kotojs

View on GitHub

Showing 7 of 14 total issues

Function config has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
Open

  config(nameOrObject, value) {
    var key;
    var definition;
    var _Chart = this;

Severity: Minor
Found in src/chart.js - About 6 hrs 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 draw has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
Open

  draw(data) {
    var bound,
      entering,
      events,
      selection,
Severity: Minor
Found in src/layer.js - About 3 hrs 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 chart.js has 266 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import 'babel-polyfill';
import * as d3 from 'd3';
import kotoAssert from './assert.js';
import Layer from './layer.js';

Severity: Minor
Found in src/chart.js - About 2 hrs to fix

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

    module.exports = function (config) {
      config.set({
        basePath: './',
        frameworks: ['mocha', 'chai', 'sinon'],
        files: [
    Severity: Minor
    Found in karma.conf.js - About 1 hr to fix

      Function accessor has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

        accessor (item, value) {
          var key;
          if (arguments.length === 0) {
            return this.accessors;
          }
      Severity: Minor
      Found in src/chart.js - About 55 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 extend has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

        static extend(init) {
          class chart extends this {
            constructor(selection) {
              var key;
              super(selection);
      Severity: Minor
      Found in src/chart.js - About 25 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 constructor has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

        constructor(base, options) {
          this._base = base;
          this._handlers = {};
          this._lifecycleRe = /^(enter|update|merge|exit)(:transition)?$/;
      
      
      Severity: Minor
      Found in src/layer.js - About 25 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