webpack/webpack-cli

View on GitHub
packages/create-webpack-app/src/generators/init/vue.ts

Summary

Maintainability
F
6 days
Test Coverage

Function default has 205 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export default async function (plop: NodePlopAPI) {
  // dependencies to be installed
  const devDependencies: Array<string> = [
    "webpack",
    "webpack-cli",
Severity: Major
Found in packages/create-webpack-app/src/generators/init/vue.ts - About 1 day to fix

    Function default has a Cognitive Complexity of 36 (exceeds 5 allowed). Consider refactoring.
    Open

    export default async function (plop: NodePlopAPI) {
      // dependencies to be installed
      const devDependencies: Array<string> = [
        "webpack",
        "webpack-cli",
    Severity: Minor
    Found in packages/create-webpack-app/src/generators/init/vue.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 actions has 114 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        actions: function (answers: Answers) {
          // setting some default values based on the answers
          const actions: ActionType[] = [];
          answers.htmlWebpackPlugin = true;
          answers.devServer = true;
    Severity: Major
    Found in packages/create-webpack-app/src/generators/init/vue.ts - About 4 hrs to fix

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          prompts: [
            {
              type: "list",
              name: "langType",
              message: "Which of the following JS solutions do you want to use?",
      Severity: Major
      Found in packages/create-webpack-app/src/generators/init/vue.ts and 1 other location - About 2 days to fix
      packages/create-webpack-app/src/generators/init/react.ts on lines 31..102

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 384.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

            const files: Array<FileRecord> = [
              { filePath: "./index.html", fileType: "text" },
              { filePath: "./src/assets/webpack.png", fileType: "binary" },
              { filePath: "webpack.config.js", fileType: "text" },
              { filePath: "package.json", fileType: "text" },
      Severity: Major
      Found in packages/create-webpack-app/src/generators/init/vue.ts and 1 other location - About 5 hrs to fix
      packages/create-webpack-app/src/generators/plugin/default.ts on lines 56..67

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 140.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Identical blocks of code found in 3 locations. Consider refactoring.
      Open

            switch (answers.cssType) {
              case "CSS only":
                files.push({ filePath: "./src/styles/global.css", fileType: "text" });
                break;
              case "SASS":
      Severity: Major
      Found in packages/create-webpack-app/src/generators/init/vue.ts and 2 other locations - About 4 hrs to fix
      packages/create-webpack-app/src/generators/init/react.ts on lines 187..200
      packages/create-webpack-app/src/generators/init/svelte.ts on lines 174..187

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 116.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 6 locations. Consider refactoring.
      Open

            for (const file of files) {
              actions.push({
                type: "fileGenerator",
                path: join(answers.projectPath, file.filePath),
                templateFile: join(
      Severity: Major
      Found in packages/create-webpack-app/src/generators/init/vue.ts and 5 other locations - About 2 hrs to fix
      packages/create-webpack-app/src/generators/init/default.ts on lines 182..194
      packages/create-webpack-app/src/generators/init/react.ts on lines 202..214
      packages/create-webpack-app/src/generators/init/svelte.ts on lines 189..201
      packages/create-webpack-app/src/generators/loader/default.ts on lines 77..89
      packages/create-webpack-app/src/generators/plugin/default.ts on lines 69..81

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 93.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 3 locations. Consider refactoring.
      Open

              if (answers.langType === "Typescript") {
                files.push({ filePath: "./src/store/index.ts", fileType: "text" });
              } else {
                files.push({ filePath: "./src/store/index.js", fileType: "text" });
              }
      Severity: Major
      Found in packages/create-webpack-app/src/generators/init/vue.ts and 2 other locations - About 1 hr to fix
      packages/create-webpack-app/src/generators/init/svelte.ts on lines 168..172
      packages/create-webpack-app/src/generators/init/vue.ts on lines 181..185

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 63.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 3 locations. Consider refactoring.
      Open

            if (answers.langType === "Typescript") {
              files.push({ filePath: "./src/router/index.ts", fileType: "text" });
            } else {
              files.push({ filePath: "./src/router/index.js", fileType: "text" });
            }
      Severity: Major
      Found in packages/create-webpack-app/src/generators/init/vue.ts and 2 other locations - About 1 hr to fix
      packages/create-webpack-app/src/generators/init/svelte.ts on lines 168..172
      packages/create-webpack-app/src/generators/init/vue.ts on lines 188..192

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 63.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 3 locations. Consider refactoring.
      Open

              case "Typescript":
                answers.entry = "./src/main.ts";
                files.push(
                  { filePath: "tsconfig.json", fileType: "text" },
                  { filePath: answers.entry as string, fileType: "text" },
      Severity: Major
      Found in packages/create-webpack-app/src/generators/init/vue.ts and 2 other locations - About 1 hr to fix
      packages/create-webpack-app/src/generators/init/default.ts on lines 158..164
      packages/create-webpack-app/src/generators/init/default.ts on lines 165..171

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 58.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Identical blocks of code found in 2 locations. Consider refactoring.
      Open

              case "ES6":
                answers.entry = "./src/main.js";
                files.push({ filePath: answers.entry as string, fileType: "text" });
                break;
      Severity: Minor
      Found in packages/create-webpack-app/src/generators/init/vue.ts and 1 other location - About 35 mins to fix
      packages/create-webpack-app/src/generators/init/svelte.ts on lines 162..165

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 46.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      There are no issues that match your filters.

      Category
      Status