Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / eslint / lib / rules / no-sparse-arrays.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/eslint/lib/rules/no-sparse-arrays.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/eslint/lib/rules/no-sparse-arrays.js
new file mode 100644 (file)
index 0000000..985109c
--- /dev/null
@@ -0,0 +1,46 @@
+/**
+ * @fileoverview Disallow sparse arrays
+ * @author Nicholas C. Zakas
+ */
+"use strict";
+
+//------------------------------------------------------------------------------
+// Rule Definition
+//------------------------------------------------------------------------------
+
+module.exports = {
+    meta: {
+        type: "problem",
+
+        docs: {
+            description: "disallow sparse arrays",
+            category: "Possible Errors",
+            recommended: true,
+            url: "https://eslint.org/docs/rules/no-sparse-arrays"
+        },
+
+        schema: []
+    },
+
+    create(context) {
+
+
+        //--------------------------------------------------------------------------
+        // Public
+        //--------------------------------------------------------------------------
+
+        return {
+
+            ArrayExpression(node) {
+
+                const emptySpot = node.elements.indexOf(null) > -1;
+
+                if (emptySpot) {
+                    context.report({ node, message: "Unexpected comma in middle of array." });
+                }
+            }
+
+        };
+
+    }
+};