luma/wtf-sdp

View on GitHub

Showing 3 of 51 total issues

File parser_spec.js has 404 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/* eslint max-nested-callbacks: [0] */
import parser from '../../src/grammar.peg.js';
import { readAsset } from '../helpers/file_helpers.js';

describe('Parser', function() {
Severity: Minor
Found in test/unit/parser_spec.js - About 5 hrs to fix

    Function collatePayloads has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    export const collatePayloads = (rawFormats, attrs) => {
      const formats = new Set(rawFormats);
      const payloads = new Map();
    
      for (const attr of attrs) {
    Severity: Minor
    Found in src/payloads.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 collateAttr has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    export const collateAttr = (payload, attr) => {
      for (const key in attr) {
        if (attr.hasOwnProperty(key)) {
          const value = attr[key];
    
    
    Severity: Minor
    Found in src/payloads.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