Urara-Blog/node_modules/.pnpm-store/v3/files/b8/776993bb1b97109ded5e2e5e160a5129417989aa576c5d025437bf72b48b02c9ac85a44afc0234c997b2db1c9c5d72656d575360d8096798ee360268d8afa2
2022-08-14 01:14:53 +08:00

39 lines
1.1 KiB
Text

/**
* @fileoverview disallow using an async function as a Promise executor
* @author Teddy Katz
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
/** @type {import('../shared/types').Rule} */
module.exports = {
meta: {
type: "problem",
docs: {
description: "Disallow using an async function as a Promise executor",
recommended: true,
url: "https://eslint.org/docs/rules/no-async-promise-executor"
},
fixable: null,
schema: [],
messages: {
async: "Promise executor functions should not be async."
}
},
create(context) {
return {
"NewExpression[callee.name='Promise'][arguments.0.async=true]"(node) {
context.report({
node: context.getSourceCode().getFirstToken(node.arguments[0], token => token.value === "async"),
messageId: "async"
});
}
};
}
};