astro-ghostcms/.pnpm-store/v3/files/e9/f4f758f88cdb0b68fdcdebfd41d...

180 lines
7.9 KiB
Plaintext

"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 ts = __importStar(require("typescript"));
const util_1 = require("../util");
exports.default = (0, util_1.createRule)({
name: 'promise-function-async',
meta: {
type: 'suggestion',
fixable: 'code',
docs: {
description: 'Require any function or method that returns a Promise to be marked async',
requiresTypeChecking: true,
},
messages: {
missingAsync: 'Functions that return promises must be async.',
},
schema: [
{
type: 'object',
properties: {
allowAny: {
description: 'Whether to consider `any` and `unknown` to be Promises.',
type: 'boolean',
},
allowedPromiseNames: {
description: 'Any extra names of classes or interfaces to be considered Promises.',
type: 'array',
items: {
type: 'string',
},
},
checkArrowFunctions: {
type: 'boolean',
},
checkFunctionDeclarations: {
type: 'boolean',
},
checkFunctionExpressions: {
type: 'boolean',
},
checkMethodDeclarations: {
type: 'boolean',
},
},
additionalProperties: false,
},
],
},
defaultOptions: [
{
allowAny: true,
allowedPromiseNames: [],
checkArrowFunctions: true,
checkFunctionDeclarations: true,
checkFunctionExpressions: true,
checkMethodDeclarations: true,
},
],
create(context, [{ allowAny, allowedPromiseNames, checkArrowFunctions, checkFunctionDeclarations, checkFunctionExpressions, checkMethodDeclarations, },]) {
const allAllowedPromiseNames = new Set([
'Promise',
...allowedPromiseNames,
]);
const services = (0, util_1.getParserServices)(context);
const checker = services.program.getTypeChecker();
function validateNode(node) {
const signatures = services.getTypeAtLocation(node).getCallSignatures();
if (!signatures.length) {
return;
}
const returnType = checker.getReturnTypeOfSignature(signatures[0]);
if (!(0, util_1.containsAllTypesByName)(returnType, allowAny, allAllowedPromiseNames,
// If no return type is explicitly set, we check if any parts of the return type match a Promise (instead of requiring all to match).
node.returnType == null)) {
// Return type is not a promise
return;
}
if (node.parent.type === utils_1.AST_NODE_TYPES.TSAbstractMethodDefinition) {
// Abstract method can't be async
return;
}
if ((node.parent.type === utils_1.AST_NODE_TYPES.Property ||
node.parent.type === utils_1.AST_NODE_TYPES.MethodDefinition) &&
(node.parent.kind === 'get' || node.parent.kind === 'set')) {
// Getters and setters can't be async
return;
}
if ((0, util_1.isTypeFlagSet)(returnType, ts.TypeFlags.Any | ts.TypeFlags.Unknown)) {
// Report without auto fixer because the return type is unknown
return context.report({
messageId: 'missingAsync',
node,
loc: (0, util_1.getFunctionHeadLoc)(node, context.sourceCode),
});
}
context.report({
messageId: 'missingAsync',
node,
loc: (0, util_1.getFunctionHeadLoc)(node, context.sourceCode),
fix: fixer => {
if (node.parent.type === utils_1.AST_NODE_TYPES.MethodDefinition ||
(node.parent.type === utils_1.AST_NODE_TYPES.Property && node.parent.method)) {
// this function is a class method or object function property shorthand
const method = node.parent;
// the token to put `async` before
let keyToken = context.sourceCode.getFirstToken(method);
// if there are decorators then skip past them
if (method.type === utils_1.AST_NODE_TYPES.MethodDefinition &&
method.decorators.length) {
const lastDecorator = method.decorators[method.decorators.length - 1];
keyToken = context.sourceCode.getTokenAfter(lastDecorator);
}
// if current token is a keyword like `static` or `public` then skip it
while (keyToken.type === utils_1.AST_TOKEN_TYPES.Keyword &&
keyToken.range[0] < method.key.range[0]) {
keyToken = context.sourceCode.getTokenAfter(keyToken);
}
// check if there is a space between key and previous token
const insertSpace = !context.sourceCode.isSpaceBetween(context.sourceCode.getTokenBefore(keyToken), keyToken);
let code = 'async ';
if (insertSpace) {
code = ` ${code}`;
}
return fixer.insertTextBefore(keyToken, code);
}
return fixer.insertTextBefore(node, 'async ');
},
});
}
return {
...(checkArrowFunctions && {
'ArrowFunctionExpression[async = false]'(node) {
validateNode(node);
},
}),
...(checkFunctionDeclarations && {
'FunctionDeclaration[async = false]'(node) {
validateNode(node);
},
}),
'FunctionExpression[async = false]'(node) {
if (node.parent.type === utils_1.AST_NODE_TYPES.MethodDefinition &&
node.parent.kind === 'method') {
if (checkMethodDeclarations) {
validateNode(node);
}
return;
}
if (checkFunctionExpressions) {
validateNode(node);
}
},
};
},
});
//# sourceMappingURL=promise-function-async.js.map