reharik/dagon

View on GitHub

Showing 6 of 14 total issues

exports has 21 functions (exceeds 20 allowed). Consider refactoring.
Open

module.exports = class RegistryDSL{
    constructor(){
        this.dependentRegistries = [];
        this._pathToAppRoot;
        this.dependencyDeclarations = [];
Severity: Minor
Found in src/containerModules/RegistryDSL.js - About 2 hrs to fix

    Function container has 42 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    module.exports = function container(registryFunc, containerFunc){
    
        var unresolvedGrpah = [];
        var resolvedGrpah = [];
        /**
    Severity: Minor
    Found in src/containerModules/container.js - About 1 hr to fix

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

      module.exports = function () {
        var transports = [];
        transports.push(
          new (winston.transports.Console)({
            handleExceptions: true,
      Severity: Minor
      Found in src/logger.js - About 1 hr to fix

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

        module.exports = function(registryFunc, containerFunc) {
        
            var dto          = moduleRegistry(registryFunc);
            var dependencies = R.uniqWith((a, b) => a.name == b.name && a.groupName == b.groupName, dto.dependencyDeclarations)
                .concat(dto.overrideDeclarations.filter(x=>!x.newName && !x.replaceWith && !x.subWith));
        Severity: Minor
        Found in src/containerModules/declarationReducer.js - About 1 hr to fix

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

          var resolveInstance = function resolveInstance(unResDeps, resDeps, item){
              if(resDeps.find(x=>x.name === item.name && x.groupName === item.groupName) ){
                  return;
              }
              if(item.json) {
          Severity: Minor
          Found in src/graphResolution/resolveInstance.js - About 1 hr to fix

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

            module.exports = function(registryFunc, containerFunc) {
            
                var dto          = moduleRegistry(registryFunc);
                var dependencies = R.uniqWith((a, b) => a.name == b.name && a.groupName == b.groupName, dto.dependencyDeclarations)
                    .concat(dto.overrideDeclarations.filter(x=>!x.newName && !x.replaceWith && !x.subWith));
            Severity: Minor
            Found in src/containerModules/declarationReducer.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

            Severity
            Category
            Status
            Source
            Language