webpack/webpack-cli

View on GitHub

Showing 13 of 29 total issues

Function apply has 123 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  async apply(cli: IWebpackCLI): Promise<void> {
    await cli.makeCommand(
      {
        name: "init [generation-path]",
        alias: ["create", "new", "c", "n"],
Severity: Major
Found in packages/generators/src/index.ts - About 4 hrs to fix

    Function addonGenerator has 71 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    const addonGenerator = <
      T extends BaseCustomGeneratorOptions = BaseCustomGeneratorOptions,
      Z extends CustomGeneratorOptions<T> = CustomGeneratorOptions<T>,
    >(
      prompts: Generator.Questions,
    Severity: Major
    Found in packages/generators/src/addon-generator.ts - About 2 hrs to fix

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

      export async function questions(
        self: CustomGenerator,
        Question: typeof QuestionAPI,
        config: Record<string, { skip?: boolean; required?: boolean }> = {
          langType: {},
      Severity: Minor
      Found in packages/generators/src/handlers/default.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 generate has 44 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export function generate(self: CustomGenerator): void {
        // eslint-disable-next-line @typescript-eslint/no-var-requires
        const destPkgJson = require(resolveFile("package.json.js"))(self.answers.devServer);
        const sourcePkgJsonPath = self.destinationPath("package.json");
      
      
      Severity: Minor
      Found in packages/generators/src/handlers/default.ts - About 1 hr to fix

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

        const runTest = (pkg, cliArgs = [], logMessage, isSubPackage = false) => {
          // Simulate package missing
          swapPkgName(pkg, isSubPackage);
        
          const proc = execa(CLI_ENTRY_PATH, cliArgs, {
        Severity: Minor
        Found in smoketests/helpers.js - About 1 hr to fix

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

          const runTestWithHelp = (pkg, cliArgs = [], logMessage, isSubPackage = false) => {
            // Simulate package missing
            swapPkgName(pkg, isSubPackage);
          
            const proc = execa(CLI_ENTRY_PATH, cliArgs, {
          Severity: Minor
          Found in smoketests/helpers.js - About 1 hr to fix

            Function writing has 29 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public writing(): void {
                  const name = (this.props as Generator.Question).name as string;
                  const resolvedTemplatePath = this.resolvedTemplatePath as string;
                  const packageJsonTemplatePath = "../addon-template/package.json.js";
            
            
            Severity: Minor
            Found in packages/generators/src/addon-generator.ts - About 1 hr to fix

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

              export function generate(self: CustomGenerator): void {
                const files = ["./index.html", "./src/assets/webpack.png", "webpack.config.js", "package.json"];
              
                switch (self.answers.langType) {
                  case "Typescript":
              Severity: Minor
              Found in packages/generators/src/handlers/react.ts - About 1 hr to fix

                Function addonGenerator has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                Open

                const addonGenerator = <
                  T extends BaseCustomGeneratorOptions = BaseCustomGeneratorOptions,
                  Z extends CustomGeneratorOptions<T> = CustomGeneratorOptions<T>,
                >(
                  prompts: Generator.Questions,
                Severity: Minor
                Found in packages/generators/src/addon-generator.ts - About 55 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

                Function generate has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                Open

                export function generate(self: CustomGenerator): void {
                  // eslint-disable-next-line @typescript-eslint/no-var-requires
                  const destPkgJson = require(resolveFile("package.json.js"))(self.answers.devServer);
                  const sourcePkgJsonPath = self.destinationPath("package.json");
                
                
                Severity: Minor
                Found in packages/generators/src/handlers/default.ts - 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

                Function List has 6 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                  self: Generator,
                  name: string,
                  message: string,
                  choices: string[],
                  defaultChoice: string,
                Severity: Minor
                Found in packages/generators/src/utils/scaffold-utils.ts - About 45 mins to fix

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

                    self: Generator,
                    name: string,
                    message: string,
                    defaultChoice = true,
                    skip = false,
                  Severity: Minor
                  Found in packages/generators/src/utils/scaffold-utils.ts - About 35 mins to fix

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

                      self: Generator,
                      name: string,
                      message: string,
                      defaultChoice: string,
                      skip = false,
                    Severity: Minor
                    Found in packages/generators/src/utils/scaffold-utils.ts - About 35 mins to fix
                      Severity
                      Category
                      Status
                      Source
                      Language