dyatko/arkit

View on GitHub
src/generator.ts

Summary

Maintainability
C
1 day
Test Coverage

Function generateLayers has 59 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  protected generateLayers(
    output: OutputSchema,
    allComponents: Components
  ): Layers {
    const groups = array(output.groups) || [{}];
Severity: Major
Found in src/generator.ts - About 2 hrs to fix

    Function resolveConflictingComponentNames has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

      protected resolveConflictingComponentNames(
        components: Components
      ): Components {
        const componentsByName: { [name: string]: Component[] } = {};
    
    
    Severity: Minor
    Found in src/generator.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

    Function generateLayers has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

      protected generateLayers(
        output: OutputSchema,
        allComponents: Components
      ): Layers {
        const groups = array(output.groups) || [{}];
    Severity: Minor
    Found in src/generator.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

    Function generateComponents has 34 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      protected generateComponents(output: OutputSchema): Components {
        const components = Object.keys(this.files).reduce(
          (components, filename) => {
            const filepath = filename.endsWith("**")
              ? path.dirname(filename)
    Severity: Minor
    Found in src/generator.ts - About 1 hr to fix

      Function findComponentSchema has 28 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        protected findComponentSchema(
          output: OutputSchema,
          filename: string
        ): ComponentSchema | undefined {
          const componentSchemas = this.config.final.components as ComponentSchema[];
      Severity: Minor
      Found in src/generator.ts - About 1 hr to fix

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

          protected generateComponents(output: OutputSchema): Components {
            const components = Object.keys(this.files).reduce(
              (components, filename) => {
                const filepath = filename.endsWith("**")
                  ? path.dirname(filename)
        Severity: Minor
        Found in src/generator.ts - 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 findComponentSchema has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

          protected findComponentSchema(
            output: OutputSchema,
            filename: string
          ): ComponentSchema | undefined {
            const componentSchemas = this.config.final.components as ComponentSchema[];
        Severity: Minor
        Found in src/generator.ts - About 25 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

        There are no issues that match your filters.

        Category
        Status