packages/babel-plugin-proposal-object-rest-spread/src/index.js

Summary

Maintainability
D
2 days
Test Coverage

File index.js has 473 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { declare } from "@babel/helper-plugin-utils";
import syntaxObjectRestSpread from "@babel/plugin-syntax-object-rest-spread";
import { types as t } from "@babel/core";
import { convertFunctionParams } from "@babel/plugin-transform-parameters";

Severity: Minor
Found in packages/babel-plugin-proposal-object-rest-spread/src/index.js - About 7 hrs to fix

    Function VariableDeclarator has 75 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          VariableDeclarator(path, file) {
            if (!path.get("id").isObjectPattern()) {
              return;
            }
    
    
    Severity: Major
    Found in packages/babel-plugin-proposal-object-rest-spread/src/index.js - About 3 hrs to fix

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

            Function(path) {
              const params = path.get("params");
              const paramsWithRestElement = new Set();
              const idsInRestParams = new Set();
              for (let i = 0; i < params.length; ++i) {
      Severity: Major
      Found in packages/babel-plugin-proposal-object-rest-spread/src/index.js - About 2 hrs to fix

        Function ObjectExpression has 43 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

              ObjectExpression(path, file) {
                if (!hasSpread(path.node)) return;
        
                let helper;
                if (loose) {
        Severity: Minor
        Found in packages/babel-plugin-proposal-object-rest-spread/src/index.js - About 1 hr to fix

          Function createObjectSpread has 37 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            function createObjectSpread(path, file, objRef) {
              const props = path.get("properties");
              const last = props[props.length - 1];
              t.assertRestElement(last.node);
              const restElement = t.cloneNode(last.node);
          Severity: Minor
          Found in packages/babel-plugin-proposal-object-rest-spread/src/index.js - About 1 hr to fix

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

                  ForXStatement(path) {
                    const { node, scope } = path;
                    const leftPath = path.get("left");
                    const left = node.left;
            
            
            Severity: Minor
            Found in packages/babel-plugin-proposal-object-rest-spread/src/index.js - About 1 hr to fix

              Function AssignmentExpression has 33 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                    AssignmentExpression(path, file) {
                      const leftPath = path.get("left");
                      if (leftPath.isObjectPattern() && hasRestElement(leftPath)) {
                        const nodes = [];
              
              
              Severity: Minor
              Found in packages/babel-plugin-proposal-object-rest-spread/src/index.js - About 1 hr to fix

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

                        for (const name of Object.keys(path.getOuterBindingIdentifiers(path))) {
                          specifiers.push(
                            t.exportSpecifier(t.identifier(name), t.identifier(name)),
                          );
                        }
                packages/babel-plugin-transform-destructuring/src/index.js on lines 473..477

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

                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

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

                          if (node.body.body.length === 0 && path.isCompletionRecord()) {
                            node.body.body.unshift(
                              t.expressionStatement(scope.buildUndefinedNode()),
                            );
                          }
                packages/babel-plugin-transform-destructuring/src/index.js on lines 501..505

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

                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

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

                  function getExtendsHelper(file) {
                    return useBuiltIns
                      ? t.memberExpression(t.identifier("Object"), t.identifier("assign"))
                      : file.addHelper("extends");
                  }
                Severity: Minor
                Found in packages/babel-plugin-proposal-object-rest-spread/src/index.js and 1 other location - About 35 mins to fix
                packages/babel-plugin-transform-destructuring/src/index.js on lines 19..23

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

                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

                There are no issues that match your filters.

                Category
                Status