skratchdot/stats-collector

View on GitHub

Showing 15 of 24 total issues

Function leastFactor has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
Open

const leastFactor = function (n) {
  if (!Number.isFinite(n)) {
    return n;
  }
  if (n === 0) {
Severity: Minor
Found in src/helpers/leastFactor.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

Function leastFactor has 46 lines of code (exceeds 25 allowed). Consider refactoring.
Open

const leastFactor = function (n) {
  if (!Number.isFinite(n)) {
    return n;
  }
  if (n === 0) {
Severity: Minor
Found in src/helpers/leastFactor.js - About 1 hr to fix

    Function addCollector has 38 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      addCollector(collector) {
        const self = this;
        if (self._processCount > 0) {
          throw new Error('Cannot add a new collector unless you call reset() first');
        }
    Severity: Minor
    Found in src/stats/BaseStats.js - About 1 hr to fix

      Function addCollector has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

        addCollector(collector) {
          const self = this;
          if (self._processCount > 0) {
            throw new Error('Cannot add a new collector unless you call reset() first');
          }
      Severity: Minor
      Found in src/stats/BaseStats.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

      Avoid too many return statements within this function.
      Open

            return i + 4;
      Severity: Major
      Found in src/helpers/leastFactor.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

            return 5;
        Severity: Major
        Found in src/helpers/leastFactor.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                return i + 6;
          Severity: Major
          Found in src/helpers/leastFactor.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                  return i + 16;
            Severity: Major
            Found in src/helpers/leastFactor.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                    return i;
              Severity: Major
              Found in src/helpers/leastFactor.js - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                      return i + 12;
                Severity: Major
                Found in src/helpers/leastFactor.js - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                    return n;
                  Severity: Major
                  Found in src/helpers/leastFactor.js - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                        return 3;
                    Severity: Major
                    Found in src/helpers/leastFactor.js - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                            return i + 10;
                      Severity: Major
                      Found in src/helpers/leastFactor.js - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                              return i + 24;
                        Severity: Major
                        Found in src/helpers/leastFactor.js - About 30 mins to fix

                          Avoid too many return statements within this function.
                          Open

                                return i + 22;
                          Severity: Major
                          Found in src/helpers/leastFactor.js - About 30 mins to fix
                            Severity
                            Category
                            Status
                            Source
                            Language