]> git.proxmox.com Git - pve-eslint.git/blobdiff - eslint/lib/rules/handle-callback-err.js
import 8.3.0 source
[pve-eslint.git] / eslint / lib / rules / handle-callback-err.js
index 640946699e7bea3e0c9123c454e7109b95c4688d..cdb3a7642ea3c90f3537b883c08ce2578c2695e3 100644 (file)
@@ -1,6 +1,7 @@
 /**
  * @fileoverview Ensure handling of errors when we know they exist.
  * @author Jamund Ferguson
+ * @deprecated in ESLint v7.0.0
  */
 
 "use strict";
 
 module.exports = {
     meta: {
+        deprecated: true,
+
+        replacedBy: [],
+
         type: "suggestion",
 
         docs: {
             description: "require error handling in callbacks",
-            category: "Node.js and CommonJS",
             recommended: false,
             url: "https://eslint.org/docs/rules/handle-callback-err"
         },