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

PR-URL: https://github.com/nodejs/node/pull/20567 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
51 lines
1.6 KiB
JavaScript
51 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
// This rule makes sure that no Globals are going to be used in /lib.
|
|
// That could otherwise result in problems with the repl.
|
|
|
|
module.exports = function(context) {
|
|
|
|
function flagIt(msg, fix) {
|
|
return (reference) => {
|
|
context.report({
|
|
node: reference.identifier,
|
|
message: msg,
|
|
fix: (fixer) => {
|
|
const sourceCode = context.getSourceCode();
|
|
|
|
const useStrict = /'use strict';\n\n?/g;
|
|
const hasUseStrict = !!useStrict.exec(sourceCode.text);
|
|
const firstLOC = sourceCode.ast.range[0];
|
|
const rangeNeedle = hasUseStrict ? useStrict.lastIndex : firstLOC;
|
|
|
|
return fixer.insertTextBeforeRange([rangeNeedle], `${fix}\n`);
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
return {
|
|
'Program:exit': function() {
|
|
const globalScope = context.getScope();
|
|
let variable = globalScope.set.get('Buffer');
|
|
if (variable) {
|
|
const fix = "const { Buffer } = require('buffer');";
|
|
const msg = `Use ${fix} at the beginning of this file`;
|
|
variable.references.forEach(flagIt(msg, fix));
|
|
}
|
|
variable = globalScope.set.get('URL');
|
|
if (variable) {
|
|
const fix = "const { URL } = require('url');";
|
|
const msg = `Use ${fix} at the beginning of this file`;
|
|
variable.references.forEach(flagIt(msg, fix));
|
|
}
|
|
variable = globalScope.set.get('URLSearchParams');
|
|
if (variable) {
|
|
const fix = "const { URLSearchParams } = require('url');";
|
|
const msg = `Use ${fix} at the beginning of this file`;
|
|
variable.references.forEach(flagIt(msg, fix));
|
|
}
|
|
}
|
|
};
|
|
};
|