Re-enable the max-len ESLint rule. (#5265)
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
/* eslint max-len: 0 */
|
||||
|
||||
import * as t from "babel-types";
|
||||
|
||||
export default function (callee, thisNode, args) {
|
||||
if (args.length === 1 && t.isSpreadElement(args[0]) && t.isIdentifier(args[0].argument, { name: "arguments" })) {
|
||||
if (args.length === 1 && t.isSpreadElement(args[0]) &&
|
||||
t.isIdentifier(args[0].argument, { name: "arguments" })) {
|
||||
// eg. super(...arguments);
|
||||
return t.callExpression(
|
||||
t.memberExpression(callee, t.identifier("apply")),
|
||||
|
||||
Reference in New Issue
Block a user