dfcreative/color-ranger

View on GitHub

Showing 5 of 7 total issues

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

function render(values, buffer, opts) {
    if (!buffer || !buffer.length) throw Error('Buffer must be a valid non-empty UInt8CappedArray');

    if (opts && opts.type === 'chess') return renderChess([255,255,255], values, buffer);

Severity: Minor
Found in index.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 render has 61 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function render(values, buffer, opts) {
    if (!buffer || !buffer.length) throw Error('Buffer must be a valid non-empty UInt8CappedArray');

    if (opts && opts.type === 'chess') return renderChess([255,255,255], values, buffer);

Severity: Major
Found in index.js - About 2 hrs to fix

    Function renderChess has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

    function renderChess (a, b, data) {
        //suppose square data
        var w = Math.floor(Math.sqrt(data.length / 4)), h = w;
    
        var cellH = ~~(h/2);
    Severity: Minor
    Found in index.js - About 2 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 calcPolarStep has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    function calcPolarStep(x,y, vals, size, channels, mins, maxes) {
    Severity: Major
    Found in index.js - About 50 mins to fix

      Function calcRectStep has 7 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      function calcRectStep(x,y, vals, size, channels, mins, maxes) {
      Severity: Major
      Found in index.js - About 50 mins to fix
        Severity
        Category
        Status
        Source
        Language