-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
#[allow(clippy::unused_async)]
to emitted endpoints (#703)
* Add `#[allow(clippy::unused_async)]` to emitted endpoints We require endpoints to be async, but it's not uncommon to have endpoints that themselves do not need to `.await` anything. If a user wants to enable the (off-by-default) `clippy::unused_async` lint, they would need to add this annotation by hand to each such endpoint, or we could just do it for them. * fix proc macro tests
- Loading branch information
1 parent
9d685b0
commit a519993
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters