NodeBB/NodeBB

View on GitHub
src/install.js

Summary

Maintainability
C
1 day
Test Coverage

File install.js has 528 lines of code (exceeds 500 allowed). Consider refactoring.
Open

'use strict';

const fs = require('fs');
const url = require('url');
const path = require('path');
Severity: Major
Found in src/install.js - About 2 hrs to fix

    Function checkSetupFlagEnv has a Cognitive Complexity of 21 (exceeds 10 allowed). Consider refactoring.
    Open

    function checkSetupFlagEnv() {
        let setupVal = install.values;
    
        const envConfMap = {
            CONFIG: 'config',
    Severity: Minor
    Found in src/install.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 createAdmin has a Cognitive Complexity of 19 (exceeds 10 allowed). Consider refactoring.
    Open

    async function createAdmin() {
        const User = require('./user');
        const Groups = require('./groups');
        let password;
    
    
    Severity: Minor
    Found in src/install.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 createAdmin has 81 lines of code (exceeds 75 allowed). Consider refactoring.
    Open

    async function createAdmin() {
        const User = require('./user');
        const Groups = require('./groups');
        let password;
    
    
    Severity: Major
    Found in src/install.js - About 1 hr to fix

      Function checkCIFlag has a Cognitive Complexity of 14 (exceeds 10 allowed). Consider refactoring.
      Open

      function checkCIFlag() {
          let ciVals;
          try {
              ciVals = JSON.parse(nconf.get('ci'));
          } catch (e) {
      Severity: Minor
      Found in src/install.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

      There are no issues that match your filters.

      Category
      Status