mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 13:01:31 +00:00

PR-URL: https://github.com/nodejs/node/pull/17820 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
/**
|
|
* @fileoverview disallow use of the Buffer() constructor
|
|
* @author Teddy Katz
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "disallow use of the Buffer() constructor",
|
|
category: "Node.js and CommonJS",
|
|
recommended: false,
|
|
url: "https://eslint.org/docs/rules/no-buffer-constructor"
|
|
},
|
|
schema: []
|
|
},
|
|
|
|
create(context) {
|
|
|
|
//----------------------------------------------------------------------
|
|
// Public
|
|
//----------------------------------------------------------------------
|
|
|
|
return {
|
|
"CallExpression[callee.name='Buffer'], NewExpression[callee.name='Buffer']"(node) {
|
|
context.report({
|
|
node,
|
|
message: "{{example}} is deprecated. Use Buffer.from(), Buffer.alloc(), or Buffer.allocUnsafe() instead.",
|
|
data: { example: node.type === "CallExpression" ? "Buffer()" : "new Buffer()" }
|
|
});
|
|
}
|
|
};
|
|
}
|
|
};
|