@taiga-ui/eslint-plugin-experience-next 0.487.0 → 0.489.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.esm.js +7 -0
  2. package/package.json +1 -1
package/index.esm.js CHANGED
@@ -249836,6 +249836,13 @@ function collectArrayExpressions(node) {
249836
249836
  result.push(node);
249837
249837
  }
249838
249838
  switch (node.type) {
249839
+ case dist$3.AST_NODE_TYPES.ArrayExpression:
249840
+ for (const element of node.elements) {
249841
+ if (element !== null) {
249842
+ result.push(...collectArrayExpressions(element));
249843
+ }
249844
+ }
249845
+ break;
249839
249846
  case dist$3.AST_NODE_TYPES.BinaryExpression:
249840
249847
  case dist$3.AST_NODE_TYPES.LogicalExpression:
249841
249848
  result.push(...collectArrayExpressions(node.left));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ui/eslint-plugin-experience-next",
3
- "version": "0.487.0",
3
+ "version": "0.489.0",
4
4
  "description": "An ESLint plugin to enforce a consistent code styles across taiga-ui projects",
5
5
  "repository": {
6
6
  "type": "git",