CleverStack/clever-injector

View on GitHub

Showing 4 of 4 total issues

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

injector.prototype._inject = function( fn, cb ) {
  var self = this
    , names = []
    , fnText = fn.toString().replace( STRIP_COMMENTS, '' )
    , argDecl = fnText.match( FN_ARGS )
Severity: Minor
Found in injector.js - About 1 hr to fix

    Function injector has 44 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function injector( factoriesDirs ) {
      var self = this;
    
      if ( !(self instanceof injector) ) {
        return new injector( Array.prototype.slice.call( arguments ) );
    Severity: Minor
    Found in injector.js - About 1 hr to fix

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

      injector.prototype._resolve = function( name, cb ) {
        var factory = this._inherited.factories[ name ]
          , factoriesDirs = this._inherited.factoriesDirs;
      
        if ( factory ) {
      Severity: Minor
      Found in injector.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 injector has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      function injector( factoriesDirs ) {
        var self = this;
      
        if ( !(self instanceof injector) ) {
          return new injector( Array.prototype.slice.call( arguments ) );
      Severity: Minor
      Found in injector.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

      Severity
      Category
      Status
      Source
      Language