Is your feature request related to a problem? Please describe.
I would like rules to enforce the map keyword being on the same line as the generic or port keywords, with no more than one space.
For example the following code raises no errors.
architecture rtl of test is
begin
cmp_test : component test_2
generic
map (
g_test => c_test
)
port
map (
clk => clk,
reset => reset
);
end architecture rtl;
architecture rtl of test is
begin
cmp_test : component test_2
generic map (
g_test => c_test
)
port map (
clk => clk,
reset => reset
);
end architecture rtl;
I would like both of these code snippets to raise errors/fix to this
architecture rtl of test is
begin
cmp_test : component test_2
generic map (
g_test => c_test
)
port map (
clk => clk,
reset => reset
);
end architecture rtl;
Is your feature request related to a problem? Please describe. I would like rules to enforce the
map
keyword being on the same line as thegeneric
orport
keywords, with no more than one space. For example the following code raises no errors.I would like both of these code snippets to raise errors/fix to this