.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / eslint / lib / rules / no-ternary.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/eslint/lib/rules/no-ternary.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/eslint/lib/rules/no-ternary.js
new file mode 100644 (file)
index 0000000..b3ced86
--- /dev/null
@@ -0,0 +1,41 @@
+/**
+ * @fileoverview Rule to flag use of ternary operators.
+ * @author Ian Christian Myers
+ */
+
+"use strict";
+
+//------------------------------------------------------------------------------
+// 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" });
+            }
+
+        };
+
+    }
+};