]> git.proxmox.com Git - pve-eslint.git/blobdiff - eslint/lib/rules/no-extra-bind.js
import 8.4.0 source
[pve-eslint.git] / eslint / lib / rules / no-extra-bind.js
index 2db440dc1ea9b7beba32f9a05c89c5700e770b0d..561cb1a33f8591226f0712f83a24d5d527432b7c 100644 (file)
@@ -20,13 +20,13 @@ const SIDE_EFFECT_FREE_NODE_TYPES = new Set(["Literal", "Identifier", "ThisExpre
 // Rule Definition
 //------------------------------------------------------------------------------
 
+/** @type {import('../shared/types').Rule} */
 module.exports = {
     meta: {
         type: "suggestion",
 
         docs: {
             description: "disallow unnecessary calls to `.bind()`",
-            category: "Best Practices",
             recommended: false,
             url: "https://eslint.org/docs/rules/no-extra-bind"
         },