packages/babel-plugin-proposal-partial-application/src/index.js

Summary

Maintainability
B
4 hrs
Test Coverage

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

      CallExpression(path) {
        if (!hasArgumentPlaceholder(path.node)) {
          return;
        }
        const { node, scope } = path;
Severity: Major
Found in packages/babel-plugin-proposal-partial-application/src/index.js - About 2 hrs to fix

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

      function unwrapArguments(node, scope) {
        const init = [];
        for (let i = 0; i < node.arguments.length; i++) {
          if (
            !t.isArgumentPlaceholder(node.arguments[i]) &&
    Severity: Minor
    Found in packages/babel-plugin-proposal-partial-application/src/index.js - About 1 hr to fix

      There are no issues that match your filters.

      Category
      Status