Why is this an issue?

Code should adhere to a coding style to make it easier for all designers to read.

This rule checks indentation, whitespace, horizontal and vertical alignments, etc. It relies on VSG (VHDL Style Guide) to check VHDL code.

The coding style can be configured in a YAML or JSON file. The path to this configuration file should be passed through the configurationFilePath parameter.

How to fix it

Code examples

Noncompliant code example

entity  fly is -- Noncompliant: Two whitespaces between 'entity' and 'fly'
...
end;

Compliant solution

entity fly is
...
end;