webgme/webgme-cli

View on GitHub

Showing 28 of 51 total issues

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

RouterManager.prototype.mount = function (options, callback) {
  var config = utils.getConfig(),
    routerName = options.name,
    mountPt = options.mountPt,
    types = Object.keys(config),
Severity: Minor
Found in src/RouterManager.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 loadCommand has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

var loadCommand = function (name, base) {
  var result = {},
    subcommand,
    command;

Severity: Minor
Found in bin/completion.js - About 45 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 init has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

BaseManager.prototype.init = function (args, callback) {
  // Create new project
  var project, name, err;

  project = path.resolve(args.name || process.cwd());
Severity: Minor
Found in src/BaseManager.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

Function _getPathFromGME has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

ComponentManager.prototype._getPathFromGME = function (installInfo) {
  const pkgProject = installInfo.pkg;
  const { name } = installInfo;
  const gmeConfigPath = utils.getGMEConfigPath(pkgProject.toLowerCase());
  const configEntry = this._getGMEConfigEntry(gmeConfigPath);
Severity: Minor
Found in src/ComponentManager.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

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

Artifact.prototype.addFiles = function (filesToAdd, callback) {
  var names = Object.keys(filesToAdd),
    len = names.length,
    error = null,
    cb = function (err) {
Severity: Minor
Found in src/shim/blobClient.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 getComponentFromName has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

var getComponentFromName = function (name, config) {
  var types = ["components", "dependencies"],
    components = Object.keys(config.components),
    cmpnt;

Severity: Minor
Found in src/BinUtils.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 rm has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

ComponentManager.prototype.rm = function (args, callback) {
  var name = args.name,
    config = utils.getConfig(),
    type =
      config.components[this._group][name] !== undefined
Severity: Minor
Found in src/ComponentManager.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 getRequireJSPaths has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

var getRequireJSPaths = function (config, startPath) {
  var componentTypes = Object.keys(config.dependencies),
    components,
    paths = [],
    names,
Severity: Minor
Found in src/utils.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