Why is this an issue?

[[sharing_naming_conventions]] This rule allows to check that clock management module name matches a provided regular expression.

How to fix it

Code examples

Noncompliant code example

With default regular expression: ^cmm$

entity clocks is
  ...
end;

Compliant solution

With default regular expression: ^cmm$

entity cmm is
  ...
end;