google_forms/node_modules/eslint/lib/rules/no-empty-pattern.js

79 lines
2.4 KiB
JavaScript
Raw Permalink Normal View History

2024-08-09 12:04:48 +00:00
/**
* @fileoverview Rule to disallow an empty pattern
* @author Alberto Rodríguez
*/
"use strict";
2024-08-21 06:34:30 +00:00
const astUtils = require("./utils/ast-utils");
2024-08-09 12:04:48 +00:00
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
2024-08-21 06:34:30 +00:00
/** @type {import('../shared/types').Rule} */
2024-08-09 12:04:48 +00:00
module.exports = {
meta: {
type: "problem",
docs: {
2024-08-21 06:34:30 +00:00
description: "Disallow empty destructuring patterns",
2024-08-09 12:04:48 +00:00
recommended: true,
2024-08-21 06:34:30 +00:00
url: "https://eslint.org/docs/latest/rules/no-empty-pattern"
2024-08-09 12:04:48 +00:00
},
2024-08-21 06:34:30 +00:00
schema: [
{
type: "object",
properties: {
allowObjectPatternsAsParameters: {
type: "boolean",
default: false
}
},
additionalProperties: false
}
],
2024-08-09 12:04:48 +00:00
messages: {
unexpected: "Unexpected empty {{type}} pattern."
}
},
create(context) {
2024-08-21 06:34:30 +00:00
const options = context.options[0] || {},
allowObjectPatternsAsParameters = options.allowObjectPatternsAsParameters || false;
2024-08-09 12:04:48 +00:00
return {
ObjectPattern(node) {
2024-08-21 06:34:30 +00:00
if (node.properties.length > 0) {
return;
2024-08-09 12:04:48 +00:00
}
2024-08-21 06:34:30 +00:00
// Allow {} and {} = {} empty object patterns as parameters when allowObjectPatternsAsParameters is true
if (
allowObjectPatternsAsParameters &&
(
astUtils.isFunction(node.parent) ||
(
node.parent.type === "AssignmentPattern" &&
astUtils.isFunction(node.parent.parent) &&
node.parent.right.type === "ObjectExpression" &&
node.parent.right.properties.length === 0
)
)
) {
return;
}
context.report({ node, messageId: "unexpected", data: { type: "object" } });
2024-08-09 12:04:48 +00:00
},
ArrayPattern(node) {
if (node.elements.length === 0) {
context.report({ node, messageId: "unexpected", data: { type: "array" } });
}
}
};
}
};