mirror of https://gitee.com/bigwinds/arangodb
35 lines
710 B
JavaScript
35 lines
710 B
JavaScript
/**
|
|
* @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: function(context) {
|
|
|
|
return {
|
|
|
|
ConditionalExpression: function(node) {
|
|
context.report(node, "Ternary operator used.");
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
};
|