Sha256: b70117a275bb3f95f3605a4d2d1d4b3ff1be5b69450adec442cec086704eaa41
Contents?: true
Size: 764 Bytes
Versions: 43
Compression:
Stored size: 764 Bytes
Contents
/** * @fileoverview Rule to flag use of ternary operators. * @author Ian Christian Myers */ "use strict"; //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ module.exports = { meta: { docs: { description: "disallow ternary operators", category: "Stylistic Issues", recommended: false, url: "https://eslint.org/docs/rules/no-ternary" }, schema: [] }, create(context) { return { ConditionalExpression(node) { context.report({ node, message: "Ternary operator used." }); } }; } };
Version data entries
43 entries across 43 versions & 1 rubygems