Showing 6 of 6 total issues

Function exports has a Cognitive Complexity of 172 (exceeds 5 allowed). Consider refactoring.
Open

module.exports = function (options, appVersion, opterFileLocation) {
    if (!options || !appVersion) {
        throw new Error('Missing arguments');
    }
    commander
Severity: Minor
Found in lib/opter.js - About 3 days 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 exports has 187 lines of code (exceeds 25 allowed). Consider refactoring.
Open

module.exports = function (options, appVersion, opterFileLocation) {
    if (!options || !appVersion) {
        throw new Error('Missing arguments');
    }
    commander
Severity: Major
Found in lib/opter.js - About 7 hrs to fix

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

            getCharacterForOption = function (optName) {
                var i, moreChars, ch,
                    firstCharLC = optName[0].toLowerCase(),
                    firstCharUC = optName[0].toUpperCase();
                
    Severity: Major
    Found in lib/opter.js - About 2 hrs to fix

      Avoid deeply nested control flow statements.
      Open

                                  if (!usedCharacters[allCharacters[i]]) {
                                      ch = allCharacters[i];
                                      break;
                                  }
      Severity: Major
      Found in lib/opter.js - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                            if (value === undefined) {
                                value = option.defaultValue;
                            }
        Severity: Major
        Found in lib/opter.js - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                              switch (option.schema.type) {
          
                                  case 'boolean':
                                      value = (value === 'true') || (value === true);
                                      break;
          Severity: Major
          Found in lib/opter.js - About 45 mins to fix
            Severity
            Category
            Status
            Source
            Language