thecodrr/fdir

View on GitHub

Showing 5 of 10 total issues

Builder has 21 functions (exceeds 20 allowed). Consider refactoring.
Open

export class Builder<TReturnType extends Output = PathsOutput> {
  private readonly globCache: Record<string, Matcher> = {};
  private options: Options = {
    maxDepth: Infinity,
    suppressErrors: true,
Severity: Minor
Found in src/builder/index.ts - About 2 hrs to fix

    Function build has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    export function build<TOutput extends Output>(
      options: Options,
      isSynchronous: boolean
    ): InvokeCallbackFunction<TOutput> {
      const { onlyCounts, group, maxFiles } = options;
    Severity: Minor
    Found in src/api/functions/invoke-callback.ts - About 1 hr 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

    Avoid deeply nested control flow statements.
    Open

                if (exclude && exclude(entry.name, resolvedPath)) return;
    Severity: Major
    Found in src/api/walker.ts - About 45 mins to fix

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

      export function build(options: Options): PushFileFunction {
        const { excludeFiles, filters, onlyCounts } = options;
        if (excludeFiles) return empty;
      
        if (filters && filters.length) {
      Severity: Minor
      Found in src/api/functions/push-file.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

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

        private normalizePath(path: string) {
          const { resolvePaths, normalizePath, pathSeparator } = this.state.options;
          const pathNeedsCleaning =
            (process.platform === "win32" && path.includes("/")) ||
            path.startsWith(".");
      Severity: Minor
      Found in src/api/walker.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