rb28z2/progress-bot

View on GitHub

Showing 5 of 36 total issues

Function initIRC has 52 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function initIRC() {
    console.log("Connecting to IRC...".green);
    bot = new irc.Client(config.server, config.botName, {
        channels: config.channels
    });
Severity: Major
Found in irc.js - About 2 hrs to fix

    Function initDiscord has 33 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export function initDiscord() {
        client.on("ready", () => {
            console.log(`Logged in as ${client.user.tag}`.yellow);
        });
    
    
    Severity: Minor
    Found in discord.js - About 1 hr to fix

      Function newTitleTrigger has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

      export function newTitleTrigger(command, value) {
          const tempTitle = stats["title"];
          if (command === "title" || command === "episode") {
              console.log("Resetting everything".yellow);
              for (const key in stats) {
      Severity: Minor
      Found in common.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 getStats has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

      export function getStats() {
          if (!stats){
              console.log("Reading existing data...".green);
              const file = `${__dirname}/data.json`;
              try {
      Severity: Minor
      Found in common.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 initIRC has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

      export function initIRC() {
          console.log("Connecting to IRC...".green);
          bot = new irc.Client(config.server, config.botName, {
              channels: config.channels
          });
      Severity: Minor
      Found in irc.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