@plumeria/eslint-plugin 8.0.2 → 8.0.3

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.
@@ -216,7 +216,9 @@ exports.noCombinator = {
216
216
  context.report({
217
217
  node: node,
218
218
  messageId: 'noCombinator',
219
- data: { combinator: found },
219
+ data: {
220
+ combinator: found,
221
+ },
220
222
  });
221
223
  }
222
224
  }
@@ -53,7 +53,10 @@ exports.noDestructure = {
53
53
  context.report({
54
54
  node: prop,
55
55
  messageId: 'noDestructure',
56
- data: { property: keyName, object: initName },
56
+ data: {
57
+ property: keyName,
58
+ object: initName,
59
+ },
57
60
  });
58
61
  }
59
62
  }
@@ -84,7 +84,9 @@ exports.noInnerCall = {
84
84
  context.report({
85
85
  node,
86
86
  messageId: 'noInnerCall',
87
- data: { name: fullName },
87
+ data: {
88
+ name: fullName,
89
+ },
88
90
  });
89
91
  }
90
92
  }
@@ -83,7 +83,9 @@ exports.noUnusedKeys = {
83
83
  context.report({
84
84
  node: keyNode,
85
85
  messageId: 'unusedKey',
86
- data: { key: keyName },
86
+ data: {
87
+ key: keyName,
88
+ },
87
89
  });
88
90
  }
89
91
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plumeria/eslint-plugin",
3
- "version": "8.0.2",
3
+ "version": "8.0.3",
4
4
  "description": "Plumeria ESLint plugin",
5
5
  "author": "Refirst 11",
6
6
  "license": "MIT",