UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

35 lines (25 loc) 703 B
/** * @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 }, schema: [] }, create(context) { return { ConditionalExpression(node) { context.report({ node, message: "Ternary operator used." }); } }; } };