We have been stalled on ESLint 3.8.0 for some time. Current ESLint is 3.13.0. We have been unable to upgrade because of more aggressive reporting on some rules, including indentation. ESLint configuration options and bugfixes are now such that we can reasonably upgrade. PR-URL: https://github.com/nodejs/node/pull/10561 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
38 lines
1,016 B
JavaScript
38 lines
1,016 B
JavaScript
/**
|
|
* @fileoverview Rule to flag usage of __iterator__ property
|
|
* @author Ian Christian Myers
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "disallow the use of the `__iterator__` property",
|
|
category: "Best Practices",
|
|
recommended: false
|
|
},
|
|
|
|
schema: []
|
|
},
|
|
|
|
create(context) {
|
|
|
|
return {
|
|
|
|
MemberExpression(node) {
|
|
|
|
if (node.property &&
|
|
(node.property.type === "Identifier" && node.property.name === "__iterator__" && !node.computed) ||
|
|
(node.property.type === "Literal" && node.property.value === "__iterator__")) {
|
|
context.report({ node, message: "Reserved name '__iterator__'." });
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|
|
};
|