Enable workspace lint configuration in remaining crates (#4329)

## Summary

We didn't have Clippy enabled (to match our workspace settings) in a few
crates.
This commit is contained in:
Charlie Marsh 2024-06-17 23:02:28 -04:00 committed by GitHub
parent b8c0391667
commit c996e8e3f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
28 changed files with 249 additions and 204 deletions

View file

@ -6,6 +6,9 @@ edition = "2021"
[lib]
proc-macro = true
[lints]
workspace = true
[dependencies]
quote = { workspace = true }
syn = { workspace = true }