bloom-layout
Version:
layout components used in bloom packages
36 lines (26 loc) • 764 B
JavaScript
/**
* @fileoverview Rule to flag use of ternary operators.
* @author Ian Christian Myers
*/
;
//------------------------------------------------------------------------------
// 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." });
}
};
}
};