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.
20 lines
485 B
20 lines
485 B
8 years ago
|
'use strict';
|
||
|
|
||
|
module.exports = function(context) {
|
||
|
function flagIt(reference) {
|
||
|
const msg = 'Use const Buffer = require(\'buffer\').Buffer; ' +
|
||
|
'at the beginning of this file';
|
||
|
context.report(reference.identifier, msg);
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
'Program:exit': function() {
|
||
|
const globalScope = context.getScope();
|
||
|
const variable = globalScope.set.get('Buffer');
|
||
|
if (variable) {
|
||
|
variable.references.forEach(flagIt);
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
};
|