xtask: Add command for checking packages conform to certain standards (#15236)

This PR adds a new `xtask` command for checking that packages conform to
certain standards.

Still a work-in-progress, but right now it checks:

- If `[lints] workspace = true` is set
- If packages are using non-workspace dependencies

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-07-25 19:20:08 -04:00 committed by GitHub
parent 13693ff80f
commit f2060ccbe0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 136 additions and 22 deletions

View file

@ -1,2 +1,3 @@
pub mod clippy;
pub mod licenses;
pub mod package_conformity;