compodoc/ngd

View on GitHub

Showing 38 of 70 total issues

Function Compiler has 288 lines of code (exceeds 25 allowed). Consider refactoring.
Open

var Compiler = /** @class */ (function () {
    function Compiler(files, options) {
        this.__cache = {};
        this.__nsModule = {};
        this.unknown = '???';
Severity: Major
Found in src/modules/compiler/dist/compiler.js - About 1 day to fix

    Function Compiler has a Cognitive Complexity of 63 (exceeds 5 allowed). Consider refactoring.
    Open

    var Compiler = /** @class */ (function () {
        function Compiler(files, options) {
            this.__cache = {};
            this.__nsModule = {};
            this.unknown = '???';
    Severity: Minor
    Found in src/modules/compiler/dist/compiler.js - About 1 day 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 DotEngine has 208 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    var DotEngine = /** @class */ (function () {
        function DotEngine(options) {
            // http://www.graphviz.org/doc/info/shapes.html
            this.template = dot_template_1.DOT_TEMPLATE;
            this.cwd = process.cwd();
    Severity: Major
    Found in src/modules/transformer/dist/engines/dot/dot.js - About 1 day to fix

      Function DotEngine has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
      Open

      var DotEngine = /** @class */ (function () {
          function DotEngine(options) {
              // http://www.graphviz.org/doc/info/shapes.html
              this.template = dot_template_1.DOT_TEMPLATE;
              this.cwd = process.cwd();
      Severity: Minor
      Found in src/modules/transformer/dist/engines/dot/dot.js - About 6 hrs 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 getSymbolDeps has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
      Open

          private getSymbolDeps(props: NodeObject[], type: string): string[] {
              let deps = props.filter((node: NodeObject) => {
                  return node.name.text === type;
              });
      
      
      Severity: Minor
      Found in src/modules/compiler/src/compiler.ts - About 5 hrs 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 Logger has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
      Open

      var Logger = /** @class */ (function () {
          function Logger() {
              this.name = pkg.name;
              this.version = pkg.version;
              this.logger = fancyLog;
      Severity: Minor
      Found in src/modules/core/dist/lang/logger.js - About 4 hrs 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 recognize has 115 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function recognize(node: any) {
      
          console.log('recognizing...', ts.SyntaxKind[node.kind+'']);
      
          switch (node.kind) {
      Severity: Major
      Found in src/modules/compiler/src/codegen.ts - About 4 hrs to fix

        Function Logger has 103 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        var Logger = /** @class */ (function () {
            function Logger() {
                this.name = pkg.name;
                this.version = pkg.version;
                this.logger = fancyLog;
        Severity: Major
        Found in src/modules/core/dist/lang/logger.js - About 4 hrs to fix

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

              Compiler.prototype.getSymbolDeps = function (props, type) {
                  var _this = this;
                  var deps = props.filter(function (node) {
                      return node.name.text === type;
                  });
          Severity: Major
          Found in src/modules/compiler/dist/compiler.js - About 3 hrs to fix

            File compiler.ts has 317 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            import * as path from 'path';
            import * as ts from 'typescript';
            import { logger, getNewLineCharacter, compilerHost, d } from '@compodoc/ngd-core';
            import { getNodeDecorators, nodeHasDecorator } from './utils';
            
            
            Severity: Minor
            Found in src/modules/compiler/src/compiler.ts - About 3 hrs to fix

              Function getSymbolDeps has 89 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  private getSymbolDeps(props: NodeObject[], type: string): string[] {
                      let deps = props.filter((node: NodeObject) => {
                          return node.name.text === type;
                      });
              
              
              Severity: Major
              Found in src/modules/compiler/src/compiler.ts - About 3 hrs to fix

                Function run has 86 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    Application.run = function () {
                        program.silent = program.silent || false;
                        ngd_core_1.logger.setVerbose(program.silent);
                        var options = program.opts();
                        var output = '';
                Severity: Major
                Found in src/modules/cli/dist/cli.js - About 3 hrs to fix

                  File compiler.js has 297 lines of code (exceeds 250 allowed). Consider refactoring.
                  Open

                  "use strict";
                  Object.defineProperty(exports, "__esModule", { value: true });
                  exports.Compiler = void 0;
                  var path = require("path");
                  var ts = require("typescript");
                  Severity: Minor
                  Found in src/modules/compiler/dist/compiler.js - About 3 hrs to fix

                    Function run has 78 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        export let run = () => {
                            program.silent = program.silent || false;
                            logger.setVerbose(program.silent);
                    
                            const options = program.opts();
                    Severity: Major
                    Found in src/modules/cli/src/cli.ts - About 3 hrs to fix

                      Function run has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
                      Open

                          export let run = () => {
                              program.silent = program.silent || false;
                              logger.setVerbose(program.silent);
                      
                              const options = program.opts();
                      Severity: Minor
                      Found in src/modules/cli/src/cli.ts - About 2 hrs 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

                      Compiler has 22 functions (exceeds 20 allowed). Consider refactoring.
                      Open

                      export class Compiler {
                          private files: string[];
                          private program: ts.Program;
                          private engine: any;
                          private __cache: any = {};
                      Severity: Minor
                      Found in src/modules/compiler/src/compiler.ts - About 2 hrs to fix

                        Function getSourceFileDecorators has 48 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            Compiler.prototype.getSourceFileDecorators = function (srcFile, outputSymbols) {
                                var _this = this;
                                ts.forEachChild(srcFile, function (node) {
                                    (0, utils_1.getNodeDecorators)(node);
                                    var decorators = (0, utils_1.getNodeDecorators)(node) || [];
                        Severity: Minor
                        Found in src/modules/compiler/dist/compiler.js - About 1 hr to fix

                          Function getSourceFileDecorators has 45 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              private getSourceFileDecorators(srcFile: ts.SourceFile, outputSymbols: Dependencies[]): void {
                                  ts.forEachChild(srcFile, (node: ts.Node) => {
                                      getNodeDecorators(node);
                                      let decorators = getNodeDecorators(node) || [];
                                      if (nodeHasDecorator(node)) {
                          Severity: Minor
                          Found in src/modules/compiler/src/compiler.ts - About 1 hr to fix

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

                                function DotEngine(options) {
                                    // http://www.graphviz.org/doc/info/shapes.html
                                    this.template = dot_template_1.DOT_TEMPLATE;
                                    this.cwd = process.cwd();
                                    this.files = {
                            Severity: Minor
                            Found in src/modules/transformer/dist/engines/dot/dot.js - About 1 hr to fix

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

                              function compilerHost(transpileOptions) {
                                  var inputFileName = transpileOptions.fileName || (transpileOptions.jsx ? 'module.tsx' : 'module.ts');
                                  var compilerHost = {
                                      getSourceFile: function (fileName) {
                                          if (fileName.lastIndexOf('.ts') !== -1) {
                              Severity: Minor
                              Found in src/modules/core/dist/lang/utilities.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