mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 20:40:20 +00:00

Enables the following rules: - no-undef: Valuable rule to error on usage of undefined variables - require-buffer: Custom rule that forbids usage of the global Buffer inside lib/ because of REPL issues. PR-URL: https://github.com/nodejs/io.js/pull/1794 Reviewed-By: Trevor Norris <trev.norris@gmail.com>
17 lines
392 B
JavaScript
17 lines
392 B
JavaScript
'use strict';
|
|
|
|
const msg = 'Use const Buffer = require(\'buffer\').Buffer; ' +
|
|
'at the beginning of this file';
|
|
|
|
module.exports = function(context) {
|
|
return {
|
|
'Program:exit': function() {
|
|
context.getScope().through.forEach(function(ref) {
|
|
if (ref.identifier.name === 'Buffer') {
|
|
context.report(ref.identifier, msg);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|