no-nested-ternary
禁止嵌套三元表达式
嵌套三元表达式会使代码更难理解。
var foo = bar ? baz : qux === quxx ? bing : bam;
规则详情
no-nested-ternary
规则不允许嵌套三元表达式。
此规则的错误代码示例:
/*eslint no-nested-ternary: "error"*/
var thing = foo ? bar : baz === qux ? quxx : foobar;
foo ? baz === qux ? quxx() : foobar() : bar();
此规则的正确代码示例:
/*eslint no-nested-ternary: "error"*/
var thing = foo ? bar : foobar;
var thing;
if (foo) {
thing = bar;
} else if (baz === qux) {
thing = quxx;
} else {
thing = foobar;
}