mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-12 03:06:05 +09:00
35 lines
703 B
JavaScript
35 lines
703 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(context) {
|
|
|
|
return {
|
|
|
|
ConditionalExpression(node) {
|
|
context.report({ node, message: "Ternary operator used." });
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
};
|