techno-express/node-7z-archive

View on GitHub

Showing 12 of 16 total issues

Function list has a Cognitive Complexity of 39 (exceeds 5 allowed). Consider refactoring.
Open

        function (
            filepath: string,
            options: { files?: string[] | undefined } | undefined,
            override = false
        ) {
Severity: Minor
Found in src/index.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

File index.ts has 382 lines of code (exceeds 250 allowed). Consider refactoring.
Open

'use strict';

import when from 'when';
import { Files, ReplaceNativeSeparator, Run } from './utility.js';
import { createSfx } from './createSfx.js';
Severity: Minor
Found in src/index.ts - About 5 hrs to fix

    Function Switches has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
    Open

    export const Switches = function (switches: Record<string, any>) {
        // Default value for switches
        switches = switches || {};
        let a = [];
        // Set default values of boolean switches
    Severity: Minor
    Found in src/utility.ts - About 3 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 Run has 72 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export function Run(
        binary: string = '7z',
        command: string | null = null,
        switches: { files?: string[] } = {},
        override: boolean = false
    Severity: Major
    Found in src/utility.ts - About 2 hrs to fix

      Function list has 70 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              function (
                  filepath: string,
                  options: { files?: string[] | undefined } | undefined,
                  override = false
              ) {
      Severity: Major
      Found in src/index.ts - About 2 hrs to fix

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

                        function onprogress(data: string) {
                            type Entry = {
                                date: Date;
                                attr: string;
                                size: number;
        Severity: Minor
        Found in src/index.ts - About 1 hr to fix

          Function Switches has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          export const Switches = function (switches: Record<string, any>) {
              // Default value for switches
              switches = switches || {};
              let a = [];
              // Set default values of boolean switches
          Severity: Minor
          Found in src/utility.ts - About 1 hr to fix

            Function retry has 8 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                command: string | undefined,
                options: {},
                override: boolean | undefined,
                progress: (arg0: any) => void,
                onprogress: (data: any) => any[],
            Severity: Major
            Found in src/index.ts - About 1 hr to fix

              Function createSfx has 7 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  name: string,
                  files: Array<string>,
                  destination: string = '',
                  options: Record<string, any> = {
                      title: null,
              Severity: Major
              Found in src/createSfx.ts - About 50 mins to fix

                Function windowsSfx has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    name: string,
                    files: string[],
                    destination: string | undefined,
                    options: Record<string, any> | undefined,
                    type: string | undefined
                Severity: Minor
                Found in src/index.ts - About 35 mins to fix

                  Function only has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                              filepath: string,
                              dest: string,
                              files: any,
                              options = {},
                              override = false
                  Severity: Minor
                  Found in src/index.ts - About 35 mins to fix

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

                    function getPath(module: string, folder = pwd): string | null {
                        if (folder.length < 1) {
                            return null;
                        }
                    
                    
                    Severity: Minor
                    Found in src/createSfx.ts - 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