vitaclear/project-lvl1-s220

View on GitHub

Showing 16 of 28 total issues

Function balancenum has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
Open

const balancenum = (digit1, digit2, digit3, digit4) => {
  if (isbalanced(digit1, digit2, digit3, digit4)) { return `${digit1}${digit2}${digit3}${digit4}`; }
  if (digit1 === Math.max(digit1, digit2, digit3, digit4)) {
    if (digit4 === Math.min(digit2, digit3, digit4)) {
      return balancenum(digit1 - 1, digit2, digit3, digit4 + 1);
Severity: Minor
Found in src/games/newbalance.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 balancenum has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

const balancenum = (digit1, digit2, digit3, digit4) => {
  if (isbalanced(digit1, digit2, digit3, digit4)) { return `${digit1}${digit2}${digit3}${digit4}`; }
  if (digit1 === Math.max(digit1, digit2, digit3, digit4)) {
    if (digit4 === Math.min(digit2, digit3, digit4)) {
      return balancenum(digit1 - 1, digit2, digit3, digit4 + 1);
Severity: Minor
Found in src/games/newbalance.js - About 1 hr to fix

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

    const isbalanced = (digit1, digit2, digit3, digit4) => {
      if (digit1 <= digit2) {
        if (digit2 <= digit3) {
          if (digit3 <= digit4) {
            if ((digit4 - digit1) <= 1) {
    Severity: Minor
    Found in src/games/newbalance.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 process has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

    export const process = (task) => {
      let correctAnswer;
      const gamer = hello();
      let i = 1;
      for (; i < 4; i += 1) {
    Severity: Minor
    Found in src/index.js - About 55 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 primegame has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

    const primegame = () => {
      rules('Please answer "yes" if a number is prime, otherwise answer "no".');
      const isprime = (num) => {
        if (num < 2) { return false; }
        for (let i = Math.round(num / 2); i > 1; i -= 1) {
    Severity: Minor
    Found in src/games/prime.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 balancenum(digit1 + 1, digit2, digit3, digit4 - 1);
    Severity: Major
    Found in src/games/newbalance.js - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

          return balancenum(digit1 + 1, digit2, digit3 - 1, digit4);
      Severity: Major
      Found in src/games/newbalance.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

              return balancenum(digit1, digit2 - 1, digit3, digit4 + 1);
        Severity: Major
        Found in src/games/newbalance.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

              return balancenum(digit1, digit2 + 1, digit3, digit4 - 1);
          Severity: Major
          Found in src/games/newbalance.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                  return balancenum(digit1, digit2 - 1, digit3 + 1, digit4);
            Severity: Major
            Found in src/games/newbalance.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                  return balancenum(digit1 + 1, digit2 - 1, digit3, digit4);
              Severity: Major
              Found in src/games/newbalance.js - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                      return balancenum(digit1, digit2 + 1, digit3 - 1, digit4);
                Severity: Major
                Found in src/games/newbalance.js - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                      return balancenum(digit1, digit2, digit3 + 1, digit4 - 1);
                  Severity: Major
                  Found in src/games/newbalance.js - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                          return balancenum(digit1, digit2, digit3 - 1, digit4 + 1);
                    Severity: Major
                    Found in src/games/newbalance.js - About 30 mins to fix

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

                      const isbalanced = (num) => {
                        for (let i = 0; i < digits(num) - 1; i += 1) {
                          const digit1 = getdigit(num, i);
                          const digit2 = getdigit(num, i + 1);
                          if (digit1 > digit2) { return false; }
                      Severity: Minor
                      Found in src/games/balance.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

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

                      const isbalanced = (num) => {
                        for (let i = 0; i < digits(num) - 1; i += 1) {
                          const digit1 = getdigit(num, i);
                          const digit2 = getdigit(num, i + 1);
                          if (digit1 > digit2) { return false; }
                      Severity: Minor
                      Found in src/games/balance3.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