eslint-plugin-mgw-eslint-rules 2.3.28 → 2.3.29

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.
package/dist/index.js CHANGED
@@ -44284,6 +44284,15 @@ var rule7 = createRule7({
44284
44284
  const typeName = checker.typeToString(type);
44285
44285
  const isReactiveReadonlyTypes = listeReactiveReadonlyTypes.includes(typeName);
44286
44286
  const suffix = isReactiveReadonlyTypes ? "$" : "$$";
44287
+ context.report({
44288
+ node,
44289
+ messageId: "reactiveNamingConvention",
44290
+ data: {
44291
+ typeName,
44292
+ name,
44293
+ suffix
44294
+ }
44295
+ });
44287
44296
  if ((isReactiveReadonlyTypes || listeReactiveWritableTypes.includes(typeName)) && (!name.endsWith(suffix) || suffix === "$" && name.endsWith("$$"))) {
44288
44297
  context.report({
44289
44298
  node,