webgme/webgme-cli

View on GitHub
src/utils.js

Summary

Maintainability
C
1 day
Test Coverage

File utils.js has 347 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/*globals define*/
"use strict";

const childProcess = require("child_process");
const spawn = childProcess.exec;
Severity: Minor
Found in src/utils.js - About 4 hrs to fix

    Function getRequireJSPaths has 73 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    var getRequireJSPaths = function (config, startPath) {
      var componentTypes = Object.keys(config.dependencies),
        components,
        paths = [],
        names,
    Severity: Major
    Found in src/utils.js - About 2 hrs to fix

      Function getWebGMEConfigContent has 31 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      var getWebGMEConfigContent = function (startPath) {
        var arrays,
          config = getConfig(startPath),
          paths = {},
          categories = ["components", "dependencies"],
      Severity: Minor
      Found in src/utils.js - About 1 hr to fix

        Function updateWebGMEConfig has 27 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        var updateWebGMEConfig = function (startPath) {
          var root = getRootPath(startPath),
            content = getWebGMEConfigContent(startPath),
            templatePath = path.join(__dirname, "res", "config.template.js.ejs"),
            template = _.template(fs.readFileSync(templatePath)),
        Severity: Minor
        Found in src/utils.js - About 1 hr to fix

          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

          FIXME found
          Open

            // FIXME: It currently assumes everything is a github url. Should support
          Severity: Minor
          Found in src/utils.js by fixme

          There are no issues that match your filters.

          Category
          Status