mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
d3c3a928c3
We are about to upgrade from ESlint 1 to ESLint 2. Remove lint rules that will not exist in ESLint 2. PR-URL: https://github.com/nodejs/node/pull/5214 Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: jbergstroem - Johan Bergström <bugs@bergstroem.nu> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Myles Borins <myles.borins@gmail.com>
20 lines
485 B
JavaScript
20 lines
485 B
JavaScript
'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);
|
|
}
|
|
}
|
|
};
|
|
};
|