Perlmint/directory-module-webpack-plugin

View on GitHub

Showing 5 of 8 total issues

Function create has 30 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static create(options: StatsCreateOption) {
        if (!options) {
            options = {};
        }
        if (!options.ctime) {
Severity: Minor
Found in src/virtualStats.ts - About 1 hr to fix

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

        private async populateFilesystem(fs: any, modulePath: string, outPath: string, emitType: EmitType) {
            const mapIsAvailable = typeof Map !== "undefined";
            const statStorageIsMap = mapIsAvailable && fs._statStorage.data instanceof Map;
            const readFileStorageIsMap = mapIsAvailable && fs._readFileStorage.data instanceof Map;
    
    
    Severity: Minor
    Found in src/plugin.ts - About 1 hr to fix

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

          private async populateFilesystem(fs: any, modulePath: string, outPath: string, emitType: EmitType) {
              const mapIsAvailable = typeof Map !== "undefined";
              const statStorageIsMap = mapIsAvailable && fs._statStorage.data instanceof Map;
              const readFileStorageIsMap = mapIsAvailable && fs._readFileStorage.data instanceof Map;
      
      
      Severity: Minor
      Found in src/plugin.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 beforeResolve has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          private static async beforeResolve(
              this: any, plugin: DirectoryModulePlugin, data: IResolveRequest, callback: IBeforeResolveRequestCallback,
          ) {
              if (plugin.populatedDirectories[data.request]) {
                  data.request = plugin.populatedDirectories[data.request];
      Severity: Minor
      Found in src/plugin.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 create has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          public static create(options: StatsCreateOption) {
              if (!options) {
                  options = {};
              }
              if (!options.ctime) {
      Severity: Minor
      Found in src/virtualStats.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

      Severity
      Category
      Status
      Source
      Language