Why is this an issue?

[[sharing_naming_conventions]] This rule allows to check that all FSM state signal names match a provided regular expression.

How to fix it

Code examples

Noncompliant code example

With default regular expression ^sm_.+:

signal MyFSM : state_mealy_type;

Compliant solution

With default regular expression ^sm_.+:

signal sm_fly : state_mealy_type;