mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
743 B
25 lines
743 B
/**
|
|
* @fileoverview Require use of new Buffer constructor methods in lib
|
|
* @author James M Snell
|
|
*/
|
|
'use strict';
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
const msg = 'Use of the Buffer() constructor has been deprecated. ' +
|
|
'Please use either Buffer.alloc(), Buffer.allocUnsafe(), ' +
|
|
'or Buffer.from()';
|
|
|
|
function test(context, node) {
|
|
if (node.callee.name === 'Buffer') {
|
|
context.report(node, msg);
|
|
}
|
|
}
|
|
|
|
module.exports = function(context) {
|
|
return {
|
|
'NewExpression': (node) => test(context, node),
|
|
'CallExpression': (node) => test(context, node)
|
|
};
|
|
};
|
|
|