react-carousel-query
Version:
A infinite carousel component made with react that handles the pagination for you.
42 lines (30 loc) • 878 B
JavaScript
/**
* @fileoverview Rule to flag use of ternary operators.
* @author Ian Christian Myers
*/
;
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = {
meta: {
type: "suggestion",
docs: {
description: "disallow ternary operators",
category: "Stylistic Issues",
recommended: false,
url: "https://eslint.org/docs/rules/no-ternary"
},
schema: [],
messages: {
noTernaryOperator: "Ternary operator used."
}
},
create(context) {
return {
ConditionalExpression(node) {
context.report({ node, messageId: "noTernaryOperator" });
}
};
}
};