Source code
Revision control
Copy as Markdown
Other Tools
/**
* @fileoverview Reject attempts to use the global object in jsms.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
*/
"use strict";
const helpers = require("../helpers");
// -----------------------------------------------------------------------------
// Rule Definition
// -----------------------------------------------------------------------------
module.exports = {
meta: {
docs: {
},
messages: {
avoidGlobalThis: "JSM should not use the global this",
},
schema: [],
type: "problem",
},
create(context) {
return {
ThisExpression(node) {
if (!helpers.getIsGlobalThis(helpers.getAncestors(context, node))) {
return;
}
context.report({
node,
messageId: "avoidGlobalThis",
});
},
};
},
};