]> git.proxmox.com Git - pve-eslint.git/blobdiff - eslint/lib/rules/no-await-in-loop.js
import 8.4.0 source
[pve-eslint.git] / eslint / lib / rules / no-await-in-loop.js
index 9ca89866a6e114aa7c8238530653195c9e018b4e..3aea39a16b9f3eecd0509dec36ea6ae36c993553 100644 (file)
@@ -53,13 +53,13 @@ function isLooped(node, parent) {
     }
 }
 
+/** @type {import('../shared/types').Rule} */
 module.exports = {
     meta: {
         type: "problem",
 
         docs: {
             description: "disallow `await` inside of loops",
-            category: "Possible Errors",
             recommended: false,
             url: "https://eslint.org/docs/rules/no-await-in-loop"
         },