milojs/milo-core

View on GitHub

Showing 34 of 34 total issues

Function _removeSubscriber has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function _removeSubscriber(subscribersHash, message, subscriber) {
    var msgSubscribers = subscribersHash[message];
    if (! msgSubscribers || ! msgSubscribers.length)
        return false; // nothing removed

Severity: Minor
Found in lib/messenger/index.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 _callSubscriber has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function _callSubscriber(subscriber, message, data, callback, _synchronous) {
    var syncSubscriber = subscriber.options && subscriber.options.sync
        , synchro = (_synchronous && syncSubscriber !== false)
                  || syncSubscriber;

Severity: Minor
Found in lib/messenger/index.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 removeInternalMessage has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function removeInternalMessage(message) {
    var sourceMessage = this.translateToSourceMessage(message);

    if (typeof sourceMessage == 'undefined') return;

Severity: Minor
Found in lib/messenger/m_api.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 _callPatternSubscribers has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

function _callPatternSubscribers(message, data, callback, calledMsgSubscribers, _synchronous) {
Severity: Minor
Found in lib/messenger/index.js - About 35 mins to fix

    Function addTreeChangesMessages has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        function addTreeChangesMessages(messages, messagesHash, rootPath, oldValue, newValue) {
    Severity: Minor
    Found in lib/model/synthesize/index.js - About 35 mins to fix

      Function _callSubscriber has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      function _callSubscriber(subscriber, message, data, callback, _synchronous) {
      Severity: Minor
      Found in lib/messenger/index.js - About 35 mins to fix

        Function _callSubscribers has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        function _callSubscribers(message, data, callback, msgSubscribers, _synchronous) {
        Severity: Minor
        Found in lib/messenger/index.js - About 35 mins to fix

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

          function _getExpandedSource(ds) {
              var source = [];
              if (typeof ds == 'function') {
                  if (ds._model && ds._accessPath) {
                      source.unshift(ds._accessPath);
          Severity: Minor
          Found in lib/minder.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

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

                  var parentPathChanged = pathsToChange.some(function(parentPath) {
                      if (parsedPath.length < parentPath.length) return;
                      return _pathIsParentOf(parentPath, parsedPath);
                  });
          Severity: Minor
          Found in lib/model/change_data.js and 1 other location - About 35 mins to fix
          lib/model/change_data.js on lines 182..185

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

          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

                  var parentPathChanged = pathsToChange.some(function(parentPath) {
                      if (parsedPath.length <= parentPath.length) return;
                      return _pathIsParentOf(parentPath, parsedPath);
                  });
          Severity: Minor
          Found in lib/model/change_data.js and 1 other location - About 35 mins to fix
          lib/model/change_data.js on lines 156..159

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

          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

          Avoid too many return statements within this function.
          Open

                          return translatedPath || sourcePath;
          Severity: Major
          Found in lib/model/connector.js - About 30 mins to fix

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

            function normalizeSpliceIndex(spliceIndex, length) {
                return spliceIndex > length
                        ? length
                        : spliceIndex >= 0
                            ? spliceIndex
            Severity: Minor
            Found in lib/model/model_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

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

            function validateTransaction(transaction) {
                var source = transaction[0].source
                    , sameSource = true;
            
                if (transaction.length > 1) {
            Severity: Minor
            Found in lib/model/change_data.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 log has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            Logger.prototype.log = function (type) {
                var index = levels.indexOf(type);
            
                if (! this.enabled || index > this.level)
                    return this;
            Severity: Minor
            Found in lib/util/logger_class.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