]> git.proxmox.com Git - pve-eslint.git/blobdiff - eslint/lib/rules/no-path-concat.js
import 8.3.0 source
[pve-eslint.git] / eslint / lib / rules / no-path-concat.js
index fc1f894f878988f0f995aac46034e3d071ac2e07..184c9182b4d536f82d39093ed84f0e51306e5881 100644 (file)
@@ -1,6 +1,7 @@
 /**
  * @fileoverview Disallow string concatenation when using __dirname and __filename
  * @author Nicholas C. Zakas
+ * @deprecated in ESLint v7.0.0
  */
 "use strict";
 
@@ -18,7 +19,6 @@ module.exports = {
 
         docs: {
             description: "disallow string concatenation with `__dirname` and `__filename`",
-            category: "Node.js and CommonJS",
             recommended: false,
             url: "https://eslint.org/docs/rules/no-path-concat"
         },