antongolub/tsc-esm-fix

View on GitHub

Showing 5 of 9 total issues

Function patch has 38 lines of code (exceeds 25 allowed). Consider refactoring.
Open

const patch = async (ctx: TFixContext, options: IFixOptionsNormalized) => {
  const {cwd, unlink, sourceMap} = options
  const {
    outDir,
    isSource,
Severity: Minor
Found in src/main/ts/fix.ts - About 1 hr to fix

    Function resolve has 31 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    const resolve = async (opts: IFixOptionsNormalized): Promise<TFixContext> => {
      const {cwd, target, src, tsconfig, out = cwd, ext, debug, unlink, sourceMap} = opts
      const outDir = path.resolve(cwd, out)
      const sources = asArray<string>(src)
      const targets = [...asArray<string>(target), ...getTsconfigTargets(tsconfig, cwd)]
    Severity: Minor
    Found in src/main/ts/fix.ts - About 1 hr to fix

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

      const getPatterns = (sources: string[], targets: string[]): string[] =>
        sources.length > 0
          ? sources.map((src) => src.includes('*') ? src : `${src}/**/*.{ts,tsx}`)
          : targets.map((target) => target.includes('*') ? target : `${target}/**/*.{js,d.ts}`)
      Severity: Minor
      Found in src/main/ts/finder.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 fixModuleReferences has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

      export const fixModuleReferences: TFixer = (ctx) => {
        const { contents, filename, filenames, options: {cwd}, ignore } = ctx
        const _contents = patchRefs(contents, (value) => {
          const v = value.endsWith('/') ? value.slice(0, -1) : value
          return (v.includes('/') || v === '.' || v === '..') && !ignore.includes(v)
      Severity: Minor
      Found in src/main/ts/fixes/fix-module-ref.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

      Function fixContents has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

      export const fixContents: TFixer = (
        ctx
      ) => {
        const {options} = ctx
      
      
      Severity: Minor
      Found in src/main/ts/fixes/index.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