betajs/betajs-scoped

View on GitHub

Showing 20 of 20 total issues

Function newNamespace has a Cognitive Complexity of 116 (exceeds 5 allowed). Consider refactoring.
Open

function newNamespace (opts/* : {tree ?: boolean, global ?: boolean, root ?: Object} */) {

    var options/* : {
        tree: boolean,
        global: boolean,
Severity: Minor
Found in src/main/namespace.js - About 2 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 newScope has a Cognitive Complexity of 75 (exceeds 5 allowed). Consider refactoring.
Open

function newScope (parent, parentNS, rootNS, globalNS) {
    
    var self = this;
    var nextScope = null;
    var childScopes = [];
Severity: Minor
Found in src/main/scopes.js - About 1 day 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 newScope has 228 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function newScope (parent, parentNS, rootNS, globalNS) {
    
    var self = this;
    var nextScope = null;
    var childScopes = [];
Severity: Major
Found in src/main/scopes.js - About 1 day to fix

    Function newNamespace has 178 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function newNamespace (opts/* : {tree ?: boolean, global ?: boolean, root ?: Object} */) {
    
        var options/* : {
            tree: boolean,
            global: boolean,
    Severity: Major
    Found in src/main/namespace.js - About 7 hrs to fix

      Function Attach has a Cognitive Complexity of 39 (exceeds 5 allowed). Consider refactoring.
      Open

      var Attach = (function () {  
      /** 
       * This module provides functionality to attach the Scoped system to the environment.
       * 
       * @module Attach
      Severity: Minor
      Found in src/main/attach.js - About 5 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 Globals has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
      Open

      var Globals = (function () {  
      /** 
       * This helper module provides functions for reading and writing globally accessible namespaces, both in the browser and in NodeJS.
       * 
       * @module Globals
      Severity: Minor
      Found in src/main/globals.js - About 5 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 Helper has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
      Open

      var Helper = (function () {  
      /** 
       * This helper module provides auxiliary functions for the Scoped system.
       * 
       * @module Helper
      Severity: Minor
      Found in src/main/helper.js - About 3 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 Attach has 52 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      var Attach = (function () {  
      /** 
       * This module provides functionality to attach the Scoped system to the environment.
       * 
       * @module Attach
      Severity: Major
      Found in src/main/attach.js - About 2 hrs to fix

        Identical blocks of code found in 2 locations. Consider refactoring.
        Open

                    for (var i = 0; i < node.watchers.length; ++i)
                        node.watchers[i].callback.call(node.watchers[i].context || this, node.data);
        Severity: Major
        Found in src/main/namespace.js and 1 other location - About 1 hr to fix
        src/main/namespace.js on lines 85..86

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 72.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Identical blocks of code found in 2 locations. Consider refactoring.
        Open

                for (var i = 0; i < node.watchers.length; ++i)
                    node.watchers[i].callback.call(node.watchers[i].context || this, node.data);
        Severity: Major
        Found in src/main/namespace.js and 1 other location - About 1 hr to fix
        src/main/namespace.js on lines 67..68

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 72.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Function custom has 46 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            var custom = function (argmts, name, callback) {
                var args = Helper.matchArgs(argmts, {
                    options: "object",
                    namespaceLocator: true,
                    dependencies: "array",
        Severity: Minor
        Found in src/main/scopes.js - About 1 hr to fix

          Function Helper has 45 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          var Helper = (function () {  
          /** 
           * This helper module provides auxiliary functions for the Scoped system.
           * 
           * @module Helper
          Severity: Minor
          Found in src/main/helper.js - About 1 hr to fix

            Function Globals has 43 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            var Globals = (function () {  
            /** 
             * This helper module provides functions for reading and writing globally accessible namespaces, both in the browser and in NodeJS.
             * 
             * @module Globals
            Severity: Minor
            Found in src/main/globals.js - About 1 hr to fix

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                                  if (args.hiddenDependencies) {
                                      args.hiddenDependencies.forEach(function (dep) {
                                          this.dependencies[ns.path][this.resolve(dep).path] = true;
                                      }, this);
                                  }
              Severity: Major
              Found in src/main/scopes.js and 1 other location - About 1 hr to fix
              src/main/scopes.js on lines 59..63

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 68.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                                  if (args.dependencies) {
                                      args.dependencies.forEach(function (dep) {
                                          this.dependencies[ns.path][this.resolve(dep).path] = true;
                                      }, this);
                                  }
              Severity: Major
              Found in src/main/scopes.js and 1 other location - About 1 hr to fix
              src/main/scopes.js on lines 64..68

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 68.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Function require has 36 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                      require: function () {
                          var args = Helper.matchArgs(arguments, {
                              dependencies: "array",
                              hiddenDependencies: "array",
                              callback: "function",
              Severity: Minor
              Found in src/main/scopes.js - About 1 hr to fix

                Consider simplifying this complex logical expression.
                Open

                        if (typeof mod == "object" && mod && "exports" in mod && (forceExport || mod.exports === this || !mod.exports || Helper.isEmpty(mod.exports)))
                            mod.exports = object || this;
                Severity: Critical
                Found in src/main/attach.js - About 1 hr to fix

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

                  module.exports = function(grunt) {
                  
                      var pkg = grunt.file.readJSON('package.json');
                      var gruntHelper = require('betajs-compile');
                      var dist = 'scoped';
                  Severity: Minor
                  Found in Gruntfile.js - About 1 hr to fix

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

                            var execute = function () {
                                this.require(args.dependencies, args.hiddenDependencies, function () {
                                    var _arguments = [];
                                    for (var a = 0; a < arguments.length; ++a)
                                        _arguments.push(arguments[a]);
                    Severity: Minor
                    Found in src/main/scopes.js - About 1 hr to fix

                      Avoid too many return statements within this function.
                      Open

                              return true;
                      Severity: Major
                      Found in src/main/helper.js - About 30 mins to fix
                        Severity
                        Category
                        Status
                        Source
                        Language