no-promise-all-settled.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * @author Toru Nagashima <https://github.com/mysticatea>
  3. * See LICENSE file in root directory for full license.
  4. */
  5. "use strict"
  6. const { READ, ReferenceTracker } = require("eslint-utils")
  7. module.exports = {
  8. meta: {
  9. docs: {
  10. description: "disallow `Promise.allSettled` function",
  11. category: "ES2020",
  12. recommended: false,
  13. url:
  14. "http://mysticatea.github.io/eslint-plugin-es/rules/no-promise-all-settled.html",
  15. },
  16. fixable: null,
  17. messages: {
  18. forbidden: "ES2020 'Promise.allSettled' function is forbidden.",
  19. },
  20. schema: [],
  21. type: "problem",
  22. },
  23. create(context) {
  24. return {
  25. "Program:exit"() {
  26. const tracker = new ReferenceTracker(context.getScope())
  27. for (const { node } of tracker.iterateGlobalReferences({
  28. Promise: { allSettled: { [READ]: true } },
  29. })) {
  30. context.report({ node, messageId: "forbidden" })
  31. }
  32. },
  33. }
  34. },
  35. }