Open JHertz5 opened 1 week ago
Subtask of #1306. Implement indent and blank line rules for package instantiation declarations.
For example, rules to fix this
library ieee; use ieee.std_logic_1164.all; package my_pkg is new my_generic_pkg generic map ( g_my_generic => 2 );
to this
I've raised a PR https://github.com/jeremiah-c-leary/vhdl-style-guide/pull/1327 to resolve this issue.
Subtask of #1306. Implement indent and blank line rules for package instantiation declarations.
For example, rules to fix this
to this