Sha256: 8469b829e29bec15d6d40618a0e54b5fc1f4991c1ace3dcd20f0560f6c9a859a
Contents?: true
Size: 1.11 KB
Versions: 6
Compression:
Stored size: 1.11 KB
Contents
/** * @fileoverview Rule to flag nested ternary expressions * @author Ian Christian Myers */ "use strict"; //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ /** @type {import('../shared/types').Rule} */ module.exports = { meta: { type: "suggestion", docs: { description: "disallow nested ternary expressions", recommended: false, url: "https://eslint.org/docs/rules/no-nested-ternary" }, schema: [], messages: { noNestedTernary: "Do not nest ternary expressions." } }, create(context) { return { ConditionalExpression(node) { if (node.alternate.type === "ConditionalExpression" || node.consequent.type === "ConditionalExpression") { context.report({ node, messageId: "noNestedTernary" }); } } }; } };
Version data entries
6 entries across 6 versions & 1 rubygems