|phase_2| |error| |whitespace|
This rule checks for a single space before the of keyword.
|configuring_whitespace_rules_link|
Violation
type t_u_array is array(1 downto 0) of unsigned;Fix
type t_u_array is array(1 downto 0) of unsigned;|phase_2| |error| |whitespace|
This rule checks for a single space after the of keyword.
|configuring_whitespace_rules_link|
Violation
type t_u_array is array(1 downto 0) of unsigned;Fix
type t_u_array is array(1 downto 0) of unsigned;|phase_6| |error| |case| |case_keyword|
This rule checks the array keyword has proper case.
|configuring_uppercase_and_lowercase_rules_link|
Violation
type t_u_array is ARRAY(1 downto 0) of unsigned;Fix
type t_u_array is array(1 downto 0) of unsigned;|phase_6| |error| |case| |case_keyword|
This rule checks the of keyword has proper case.
|configuring_uppercase_and_lowercase_rules_link|
Violation
type t_u_array is ARRAY(1 downto 0) of unsigned;Fix
type t_u_array is array(1 downto 0) of unsigned;