Showing 12 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;
- Read upRead up
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 81 lines of code (exceeds 25 allowed). Consider refactoring. Open
draw(data) {
var bound,
entering,
events,
selection,
Function draw
has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring. Open
draw(data) {
var bound,
entering,
events,
selection,
- Read upRead up
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 config
has 63 lines of code (exceeds 25 allowed). Consider refactoring. Open
config(nameOrObject, value) {
var key;
var definition;
var _Chart = this;
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';
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: [
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;
}
- Read upRead up
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 (definition.hasOwnProperty('setter')) {
definition.value = definition.setter.call(definition, nameOrObject[key]);
} else {
definition.value = nameOrObject[key];
}
Avoid deeply nested control flow statements. Open
if (definition.hasOwnProperty('constrain')) {
setPercentage();
}
Avoid too many return
statements within this function. Open
return this;
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);
- Read upRead up
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)?$/;
- Read upRead up
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"