Issue#1504: Added rules to restrict library and package names.#1506
Issue#1504: Added rules to restrict library and package names.#1506jeremiah-c-leary merged 15 commits intojeremiah-c-leary:masterfrom
Conversation
|
Evening @JHertz5 , I added some documentation to cover the configuration of the new rules. Let me know what you think. Thanks, --Jeremy |
|
Thanks very much! That's a good idea, I hadn't considered adding that documentation page. I've made a couple of tweaks:
library work;
use work.my_package.all;I think that library_012 would only fail once, on the first line, and I think that use_clause_012 would fail once on the second line. library_012 doesn't check If you'd like me to add functionality to check the library calls in I've pushed those changes, it should be ready for you to take a look at when you have a chance. Thanks again for the help! |
|
Morning @JHertz5 , Thanks for the updates to the documentation.
I think since the library clause is required before a use clause that we do not need to check the library in the use clause. Thanks again for the PR. I will get this merged to master. --Jeremy |
Resolves #1504.
Note that this PR is dependent on #1487 and shouldn't be merged until that branch is merged.