jeremiah-c-leary / vhdl-style-guide

Style guide enforcement for VHDL
GNU General Public License v3.0
192 stars 40 forks source link

Rule to enforce case on entity instantiation library name #1275

Closed JHertz5 closed 1 month ago

JHertz5 commented 1 month ago

Is your feature request related to a problem? Please describe. I'd like a rule to enforce case on entity instantiation library name tokens, e.g. correcting

  cmp_test : entity WORK.my_component
    port map (
      clk => clk
    );

to

  cmp_test : entity work.my_component
    port map (
      clk => clk
    );
JHertz5 commented 1 month ago

I've raised PR #1276 to address this issue.

jeremiah-c-leary commented 1 month ago

Morning @JHertz5 ,

Yet another perfect PR.

I will get this merged to master.

Thanks again,

--Jeremy

JHertz5 commented 1 month ago

Thanks very much!