jkanschik/node-factories

View on GitHub

Showing 5 of 7 total issues

Function create has 56 lines of code (exceeds 25 allowed). Consider refactoring.
Open

Builder.prototype.create = function(count, callback) {
  var self = this;
  if (!callback) {
    callback = count;
    count = undefined;
Severity: Major
Found in lib/builder.js - About 2 hrs to fix

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

    module.exports = function(grunt) {
    
      grunt.registerTask('default', ['jshint', 'jscs', 'mochaTest']);
    
      grunt.loadNpmTasks('grunt-contrib-jshint');
    Severity: Minor
    Found in gruntfile.js - About 1 hr to fix

      Function create has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

      Builder.prototype.create = function(count, callback) {
        var self = this;
        if (!callback) {
          callback = count;
          count = undefined;
      Severity: Minor
      Found in lib/builder.js - About 1 hr 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 create has 34 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        var create = function(object, cb) {
      
          var innerCreate = function(object, cb) {
            object.create(function(err, createdObj) {
              if (self.factory.afterCreateCallbacks.length) {
      Severity: Minor
      Found in lib/builder.js - About 1 hr to fix

        Function resolveFunctions has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

        var resolveFunctions = function(object, lazyArray) {
          var setLazyValue = function(key, value, object, cb) {
            value.call(object, function(lazyVal) {
              object[key] = lazyVal;
              cb(null, object);
        Severity: Minor
        Found in lib/builder.js - About 1 hr 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