Why is this an issue?

Useless semicolons located in non-procedural scopes should be removed.

How to fix it

Code examples

Noncompliant code example

module fly;
  ;
endmodule

Compliant solution

module fly;
endmodule