ezylean/nuxt-renderer-extractor

View on GitHub

Showing 13 of 13 total issues

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

  const run = createRun({
    generate: () => Promise.resolve(),
    log: (text: string) => logs.push(text),
    ls: () => [],
    parseCLArgs: () => ({
Severity: Major
Found in src/cli/run.spec.ts and 2 other locations - About 3 hrs to fix
src/cli/run.spec.ts on lines 9..18
src/cli/run.spec.ts on lines 127..136

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

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 run = createRun({
    generate: () => Promise.resolve(),
    log: (text: string) => logs.push(text),
    ls: () => [],
    parseCLArgs: () => ({
Severity: Major
Found in src/cli/run.spec.ts and 2 other locations - About 3 hrs to fix
src/cli/run.spec.ts on lines 9..18
src/cli/run.spec.ts on lines 89..98

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

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 run = createRun({
    generate: () => Promise.resolve(),
    log: (text: string) => logs.push(text),
    ls: () => [],
    parseCLArgs: () => ({
Severity: Major
Found in src/cli/run.spec.ts and 2 other locations - About 3 hrs to fix
src/cli/run.spec.ts on lines 89..98
src/cli/run.spec.ts on lines 127..136

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

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 create has 40 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function create(deps: Dependencies) {
  return (
    moduleName: string,
    newModuleName: string,
    destPath: string,
Severity: Minor
Found in src/lib/extract.ts - About 1 hr to fix

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

    export function getImports(src: string): string[] {
      const walker = new Walker();
    
      const dependencies = [];
    
    
    Severity: Minor
    Found in src/lib/getImports.ts - About 1 hr to fix

      Function result has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        const result = recLoop('/index', path => {
          if (path === '/index') {
            return {
              seeds: [
                '../common',
      Severity: Minor
      Found in src/lib/recLoop.spec.ts - About 1 hr to fix

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

        export function create(deps: Dependencies) {
          return () => {
            const CLArgs = deps.parseCLArgs(messages.help, config);
            const command = CLArgs.input[0];
        
        
        Severity: Minor
        Found in src/cli/run.ts - About 1 hr to fix

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

          test('es6 exports', t => {
            const source = `export * from "all-exports";
            export { name1, name2, nameN } from "multiple-exports";
            export { import1 as name3, import2 as name4, nameN2 } from "multiple-aliased-exports";
            export { default } from "default-export";`;
          Severity: Minor
          Found in src/lib/getImports.spec.ts and 1 other location - About 55 mins to fix
          src/lib/getImports.spec.ts on lines 67..80

          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

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

          test('node require', t => {
            const source = `const allImports = require("all-imports");
            const { name1, name2, nameN } = require("multiple-imports");
            const { import1, import2, import3 } = require("multiple-aliased-imports");
            const defaultImport = require("default-import").default;`;
          Severity: Minor
          Found in src/lib/getImports.spec.ts and 1 other location - About 55 mins to fix
          src/lib/getImports.spec.ts on lines 52..65

          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

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

              if (path === '/index') {
                return {
                  seeds: ['./submod'],
                  values: []
                };
          Severity: Minor
          Found in src/lib/recLoop.spec.ts and 1 other location - About 40 mins to fix
          src/lib/recLoop.spec.ts on lines 53..68

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

          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

              } else if (path === './module') {
                return {
                  seeds: ['./subsubmodule'],
                  values: ['subMod1']
                };
          Severity: Minor
          Found in src/lib/recLoop.spec.ts and 1 other location - About 40 mins to fix
          src/lib/recLoop.spec.ts on lines 7..22

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

          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

                case 'ExportAllDeclaration':
                  if (node.source && node.source.value) {
                    dependencies.push(node.source.value);
                  }
                  break;
          Severity: Minor
          Found in src/lib/getImports.ts and 1 other location - About 35 mins to fix
          src/lib/getImports.ts on lines 26..30

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

          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

                case 'ImportDeclaration':
                  if (node.source && node.source.value) {
                    dependencies.push(node.source.value);
                  }
                  break;
          Severity: Minor
          Found in src/lib/getImports.ts and 1 other location - About 35 mins to fix
          src/lib/getImports.ts on lines 32..36

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

          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