Sha256: dec2ef9229da522e4b27c779004ee4dd8880fb44954d69185d7b83c85e8edee7
Contents?: true
Size: 1.05 KB
Versions: 43
Compression:
Stored size: 1.05 KB
Contents
/** * @fileoverview A rule to disallow negated left operands of the `in` operator * @author Michael Ficarra * @deprecated in ESLint v3.3.0 */ "use strict"; //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ module.exports = { meta: { docs: { description: "disallow negating the left operand in `in` expressions", category: "Possible Errors", recommended: false, replacedBy: ["no-unsafe-negation"], url: "https://eslint.org/docs/rules/no-negated-in-lhs" }, deprecated: true, schema: [] }, create(context) { return { BinaryExpression(node) { if (node.operator === "in" && node.left.type === "UnaryExpression" && node.left.operator === "!") { context.report({ node, message: "The 'in' expression's left operand is negated." }); } } }; } };
Version data entries
43 entries across 43 versions & 1 rubygems