tim-evans/dinosheets

View on GitHub

Showing 9 of 13 total issues

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

  css(selector, styles) {
    if (styles == null) {
      delete this.bufferedStyles[selector];
    }

Severity: Minor
Found in lib/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 updateRule has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
Open

  updateRule(selector, rules) {
    if (this._splitsSelectors && selector.indexOf(',') !== -1) {
      forEach(map(selector.split(','), trim), (selector) => {
        this.updateRule(selector, rules);
      });
Severity: Minor
Found in lib/shim.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 updateRule has 31 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  updateRule(selector, rules) {
    if (this._splitsSelectors && selector.indexOf(',') !== -1) {
      forEach(map(selector.split(','), trim), (selector) => {
        this.updateRule(selector, rules);
      });
Severity: Minor
Found in lib/shim.js - About 1 hr to fix

    Function insertRule has 30 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      insertRule(selector, rules, index) {
        const { styleSheet } = this;
    
        // Lint out all rules that can't be applied
        rules = reduce(keys(rules), (E, rule) => {
    Severity: Minor
    Found in lib/shim.js - About 1 hr to fix

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

      export function camelize(str) {
        // Fix applying float styles for IE8 - IE9
        if (str === 'float' || str === 'cssFloat') {
          if (typeof document.body.style.cssFloat !== 'undefined') {
            return 'cssFloat';
      Severity: Minor
      Found in lib/utils.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 insertRule has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

        insertRule(selector, rules, index) {
          const { styleSheet } = this;
      
          // Lint out all rules that can't be applied
          rules = reduce(keys(rules), (E, rule) => {
      Severity: Minor
      Found in lib/shim.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

      Function copy has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

      export function copy(O) {
        const dup = {};
        for (let key in O) {
          if (!O.hasOwnProperty(key)) { continue; }
          let value = O[key];
      Severity: Minor
      Found in lib/utils.js - About 35 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

      Avoid too many return statements within this function.
      Open

          return camelizedRule;
      Severity: Major
      Found in lib/utils.js - About 30 mins to fix

        Function uniq has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        export function uniq(a, b) {
          let acc = {};
          let key;
        
          for (key in a) {
        Severity: Minor
        Found in lib/utils.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