webgme/webgme-cli

View on GitHub
src/ComponentManager.js

Summary

Maintainability
B
6 hrs
Test Coverage

File ComponentManager.js has 269 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/*globals define*/
/*
 * This is the basic structure for component managers
 *
 * In the component manager, all public functions (functions not preceded by a _)
Severity: Minor
Found in src/ComponentManager.js - About 2 hrs to fix

    Function rm has 34 lines of code (exceeds 25 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 1 hr to fix

      Function _getJsonForConfig has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      ComponentManager.prototype._getJsonForConfig = function (
        installInfo,
        callback
      ) {
        var self = this;
      Severity: Minor
      Found in src/ComponentManager.js - About 1 hr to fix

        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 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

        FIXME found
        Open

          // FIXME: Call this without --save then later save it
        Severity: Minor
        Found in src/ComponentManager.js by fixme

        There are no issues that match your filters.

        Category
        Status