@stylistic/eslint-plugin-js
Version:
JavaScript stylistic rules for ESLint, migrated from [eslint core](https://github.com/eslint/eslint).
87 lines (84 loc) • 2.68 kB
JavaScript
import { c as createRule, G as skipChainExpression, i as isTokenOnSameLine, o as isNotClosingParenToken, L as LINEBREAK_MATCHER } from '../utils.js';
import 'eslint-visitor-keys';
import 'espree';
var newlinePerChainedCall = createRule({
name: "newline-per-chained-call",
package: "js",
meta: {
type: "layout",
docs: {
description: "Require a newline after each call in a method chain"
},
fixable: "whitespace",
schema: [{
type: "object",
properties: {
ignoreChainWithDepth: {
type: "integer",
minimum: 1,
maximum: 10,
default: 2
}
},
additionalProperties: false
}],
messages: {
expected: "Expected line break before `{{callee}}`."
}
},
create(context) {
const options = context.options[0] || {};
const ignoreChainWithDepth = options.ignoreChainWithDepth || 2;
const sourceCode = context.sourceCode;
function getPrefix(node) {
if (node.computed) {
if (node.optional)
return "?.[";
return "[";
}
if (node.optional)
return "?.";
return ".";
}
function getPropertyText(node) {
const prefix = getPrefix(node);
const lines = sourceCode.getText(node.property).split(LINEBREAK_MATCHER);
const suffix = node.computed && lines.length === 1 ? "]" : "";
return prefix + lines[0] + suffix;
}
return {
"CallExpression:exit": function(node) {
const callee = skipChainExpression(node.callee);
if (callee.type !== "MemberExpression")
return;
let parent = skipChainExpression(callee.object);
let depth = 1;
while (parent && "callee" in parent && parent.callee) {
depth += 1;
const parentCallee = skipChainExpression(parent.callee);
if (!("object" in parentCallee))
break;
parent = skipChainExpression(parentCallee.object);
}
if (depth > ignoreChainWithDepth && isTokenOnSameLine(callee.object, callee.property)) {
const firstTokenAfterObject = sourceCode.getTokenAfter(callee.object, isNotClosingParenToken);
context.report({
node: callee.property,
loc: {
start: firstTokenAfterObject.loc.start,
end: callee.loc.end
},
messageId: "expected",
data: {
callee: getPropertyText(callee)
},
fix(fixer) {
return fixer.insertTextBefore(firstTokenAfterObject, "\n");
}
});
}
}
};
}
});
export { newlinePerChainedCall as default };