1
0
Fork 0
arangodb/js/node/node_modules/eslint/lib/rules/no-nested-ternary.js

35 lines
895 B
JavaScript

/**
* @fileoverview Rule to flag nested ternary expressions
* @author Ian Christian Myers
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = {
meta: {
docs: {
description: "disallow nested ternary expressions",
category: "Stylistic Issues",
recommended: false
},
schema: []
},
create: function(context) {
return {
ConditionalExpression: function(node) {
if (node.alternate.type === "ConditionalExpression" ||
node.consequent.type === "ConditionalExpression") {
context.report(node, "Do not nest ternary expressions");
}
}
};
}
};