webpack/webpack-cli

View on GitHub

Showing 29 of 29 total issues

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

export function Input(
  self: Generator,
  name: string,
  message: string,
  defaultChoice: string,
Severity: Minor
Found in packages/generators/src/utils/scaffold-utils.ts and 1 other location - About 55 mins to fix
packages/generators/src/utils/scaffold-utils.ts on lines 35..47

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 54.

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

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 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 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 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

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

          const { htmlWebpackPlugin } = await Question.Confirm(
            self,
            "htmlWebpackPlugin",
            "Do you want to simplify the creation of HTML files for your bundle?",
            true,
        Severity: Minor
        Found in packages/generators/src/handlers/default.ts and 2 other locations - About 30 mins to fix
        packages/generators/src/handlers/default.ts on lines 46..52
        packages/generators/src/handlers/default.ts on lines 70..76

        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 45.

        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

          const { workboxWebpackPlugin } = await Question.Confirm(
            self,
            "workboxWebpackPlugin",
            "Do you want to add PWA support?",
            true,
        Severity: Minor
        Found in packages/generators/src/handlers/default.ts and 2 other locations - About 30 mins to fix
        packages/generators/src/handlers/default.ts on lines 46..52
        packages/generators/src/handlers/default.ts on lines 58..64

        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 45.

        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

          const { devServer } = await Question.Confirm(
            self,
            "devServer",
            "Do you want to use webpack-dev-server?",
            true,
        Severity: Minor
        Found in packages/generators/src/handlers/default.ts and 2 other locations - About 30 mins to fix
        packages/generators/src/handlers/default.ts on lines 58..64
        packages/generators/src/handlers/default.ts on lines 70..76

        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 45.

        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

        Severity
        Category
        Status
        Source
        Language