Urara-Blog/node_modules/.pnpm-store/v3/files/73/b10c28f0387de783e33228cef459b7e36f0161dbf87ceafa4def6b5c5527ef2024a1e7fdb3c39e0e22286a75ffd7acc8d2ec1b84c8687220fb367260e4e7bd
2022-08-14 01:14:53 +08:00

146 lines
No EOL
6.5 KiB
Text

"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("@typescript-eslint/utils");
const getESLintCoreRule_1 = require("../util/getESLintCoreRule");
const util = __importStar(require("../util"));
const baseRule = (0, getESLintCoreRule_1.getESLintCoreRule)('space-infix-ops');
const UNIONS = ['|', '&'];
exports.default = util.createRule({
name: 'space-infix-ops',
meta: {
type: 'layout',
docs: {
description: 'Require spacing around infix operators',
recommended: false,
extendsBaseRule: true,
},
fixable: baseRule.meta.fixable,
hasSuggestions: baseRule.meta.hasSuggestions,
schema: baseRule.meta.schema,
messages: Object.assign({
// @ts-expect-error -- we report on this messageId so we need to ensure it's there in case ESLint changes in future
missingSpace: "Operator '{{operator}}' must be spaced." }, baseRule.meta.messages),
},
defaultOptions: [
{
int32Hint: false,
},
],
create(context) {
const rules = baseRule.create(context);
const sourceCode = context.getSourceCode();
function report(operator) {
context.report({
node: operator,
messageId: 'missingSpace',
data: {
operator: operator.value,
},
fix(fixer) {
const previousToken = sourceCode.getTokenBefore(operator);
const afterToken = sourceCode.getTokenAfter(operator);
let fixString = '';
if (operator.range[0] - previousToken.range[1] === 0) {
fixString = ' ';
}
fixString += operator.value;
if (afterToken.range[0] - operator.range[1] === 0) {
fixString += ' ';
}
return fixer.replaceText(operator, fixString);
},
});
}
function isSpaceChar(token) {
return (token.type === utils_1.AST_TOKEN_TYPES.Punctuator && /^[=?:]$/.test(token.value));
}
function checkAndReportAssignmentSpace(leftNode, rightNode) {
if (!rightNode || !leftNode) {
return;
}
const operator = sourceCode.getFirstTokenBetween(leftNode, rightNode, isSpaceChar);
const prev = sourceCode.getTokenBefore(operator);
const next = sourceCode.getTokenAfter(operator);
if (!sourceCode.isSpaceBetween(prev, operator) ||
!sourceCode.isSpaceBetween(operator, next)) {
report(operator);
}
}
/**
* Check if it has an assignment char and report if it's faulty
* @param node The node to report
*/
function checkForEnumAssignmentSpace(node) {
checkAndReportAssignmentSpace(node.id, node.initializer);
}
/**
* Check if it has an assignment char and report if it's faulty
* @param node The node to report
*/
function checkForPropertyDefinitionAssignmentSpace(node) {
var _a;
const leftNode = node.optional && !node.typeAnnotation
? sourceCode.getTokenAfter(node.key)
: (_a = node.typeAnnotation) !== null && _a !== void 0 ? _a : node.key;
checkAndReportAssignmentSpace(leftNode, node.value);
}
/**
* Check if it is missing spaces between type annotations chaining
* @param typeAnnotation TypeAnnotations list
*/
function checkForTypeAnnotationSpace(typeAnnotation) {
const types = typeAnnotation.types;
types.forEach(type => {
const skipFunctionParenthesis = type.type === utils_1.TSESTree.AST_NODE_TYPES.TSFunctionType
? util.isNotOpeningParenToken
: 0;
const operator = sourceCode.getTokenBefore(type, skipFunctionParenthesis);
if (operator != null && UNIONS.includes(operator.value)) {
const prev = sourceCode.getTokenBefore(operator);
const next = sourceCode.getTokenAfter(operator);
if (!sourceCode.isSpaceBetween(prev, operator) ||
!sourceCode.isSpaceBetween(operator, next)) {
report(operator);
}
}
});
}
/**
* Check if it has an assignment char and report if it's faulty
* @param node The node to report
*/
function checkForTypeAliasAssignment(node) {
var _a;
checkAndReportAssignmentSpace((_a = node.typeParameters) !== null && _a !== void 0 ? _a : node.id, node.typeAnnotation);
}
function checkForTypeConditional(node) {
checkAndReportAssignmentSpace(node.extendsType, node.trueType);
checkAndReportAssignmentSpace(node.trueType, node.falseType);
}
return Object.assign(Object.assign({}, rules), { TSEnumMember: checkForEnumAssignmentSpace, PropertyDefinition: checkForPropertyDefinitionAssignmentSpace, TSTypeAliasDeclaration: checkForTypeAliasAssignment, TSUnionType: checkForTypeAnnotationSpace, TSIntersectionType: checkForTypeAnnotationSpace, TSConditionalType: checkForTypeConditional });
},
});
//# sourceMappingURL=space-infix-ops.js.map