37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
/**
|
|
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
* See LICENSE file in root directory for full license.
|
|
*/
|
|
"use strict"
|
|
|
|
const { READ, ReferenceTracker } = require("eslint-utils")
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "disallow `Promise.allSettled` function",
|
|
category: "ES2020",
|
|
recommended: false,
|
|
url:
|
|
"http://mysticatea.github.io/eslint-plugin-es/rules/no-promise-all-settled.html",
|
|
},
|
|
fixable: null,
|
|
messages: {
|
|
forbidden: "ES2020 'Promise.allSettled' function is forbidden.",
|
|
},
|
|
schema: [],
|
|
type: "problem",
|
|
},
|
|
create(context) {
|
|
return {
|
|
"Program:exit"() {
|
|
const tracker = new ReferenceTracker(context.getScope())
|
|
for (const { node } of tracker.iterateGlobalReferences({
|
|
Promise: { allSettled: { [READ]: true } },
|
|
})) {
|
|
context.report({ node, messageId: "forbidden" })
|
|
}
|
|
},
|
|
}
|
|
},
|
|
}
|