taylor1791/promissory-arbiter

View on GitHub

Showing 17 of 19 total issues

Function factory has a Cognitive Complexity of 177 (exceeds 5 allowed). Consider refactoring.
Open

}(this, function factory () {
  'use strict';

  return create();

Severity: Minor
Found in src/promissory-arbiter.js - About 3 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 factory has 624 lines of code (exceeds 25 allowed). Consider refactoring.
Open

}(this, function factory () {
  'use strict';

  return create();

Severity: Major
Found in src/promissory-arbiter.js - About 3 days to fix

    File promissory-arbiter.js has 637 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    (function iife (root, factory) {
      'use strict';
    
      var moduleName = 'Arbiter';
    
    
    Severity: Major
    Found in src/promissory-arbiter.js - About 1 day to fix

      Function karmaConfig has 94 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      module.exports = function karmaConfig (karma) {
        'use strict';
        var config = getConfig();
      
        if (process.env.CI) {
      Severity: Major
      Found in karma.conf.js - About 3 hrs to fix

        Consider simplifying this complex logical expression.
        Open

            if (!settlementLatch && latch >= 1 && maxFulfilled < latch
              || !settlementLatch && latch < 1 && maxFulfilled / total < latch
              || settlementLatch && latch >= 1 && total < latch
              || settlementLatch && latch < 1 && total === 0
            ) {
        Severity: Critical
        Found in src/promissory-arbiter.js - About 2 hrs to fix

          Consider simplifying this complex logical expression.
          Open

              if (!settlementLatch && latch >= 1 && fulfilled >= latch
                || !settlementLatch && latch < 1 && fulfilled / total >= latch
                || settlementLatch && latch >= 1 && settled >= latch
                || settlementLatch && latch < 1 && settled / total >= latch
              ) {
          Severity: Critical
          Found in src/promissory-arbiter.js - About 2 hrs to fix

            Function getCustomLaunchers has 57 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              function getCustomLaunchers() {
                var launchers = {
                  sl_ie8: {
                    browserName: 'internet explorer', platform: 'Windows XP', version: '8.0'
                  },
            Severity: Major
            Found in karma.conf.js - About 2 hrs to fix

              Function evaluateLatch has 33 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                function evaluateLatch (resolver, options) {
                  var
                    settlementLatch = options.settlementLatch,
                    latch = options.latch,
                    promise = resolver.promise,
              Severity: Minor
              Found in src/promissory-arbiter.js - About 1 hr to fix

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

                  function subscribe (state, topic, subscription, options, context) {
                    assert(typeof topic, 'string', 'Arbiter.subscribe', 'strings', 'topics');
                    options = merge(state.options, options);
                
                    var
                Severity: Minor
                Found in src/promissory-arbiter.js - About 1 hr to fix

                  Function parseReadMe has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  function parseReadMe() {
                    var readme = fs.readFileSync('README.md', 'utf8');
                    var tokens = marked.lexer(readme);
                    var parts = {};
                    var rendered = {};
                  Severity: Minor
                  Found in docs/template/publish.js - About 1 hr to fix

                    Function resumeSubscriptionDispatcher has 7 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        topic, data, options, subscriptions, resolver, fulfill, reject
                    Severity: Major
                    Found in src/promissory-arbiter.js - About 50 mins to fix

                      Function searchAround has 6 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                          getValue, getConditionValue, value, conditionValue, i, arr
                      Severity: Minor
                      Found in src/promissory-arbiter.js - About 45 mins to fix

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

                          function subscribe (state, topic, subscription, options, context) {
                        Severity: Minor
                        Found in src/promissory-arbiter.js - About 35 mins to fix

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

                            function assert (value, expected, method, type, identifier) {
                          Severity: Minor
                          Found in src/promissory-arbiter.js - About 35 mins to fix

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

                              function findLineage (getValue, isAncestor, value, tree, path) {
                            Severity: Minor
                            Found in src/promissory-arbiter.js - About 35 mins to fix

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

                                function subscribeDispatcher (state, topic, subscriptions, options, context) {
                              Severity: Minor
                              Found in src/promissory-arbiter.js - About 35 mins to fix

                                Avoid too many return statements within this function.
                                Open

                                    return !!node.subscriptions.splice(i, 1);
                                Severity: Major
                                Found in src/promissory-arbiter.js - About 30 mins to fix
                                  Severity
                                  Category
                                  Status
                                  Source
                                  Language