Why is this an issue?

[[sharing_naming_conventions]] This rule allows to check that reset management module names match a provided regular expression.

How to fix it

Code examples

Noncompliant code example

With default regular expression: ^rmm$

entity resets is
  ...
end;

Compliant solution

With default regular expression: ^rmm$

entity rmm is
  ...
end;