Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clippy: disable return_self_not_must_use
A new Clippy version added a new warning when a function that returns `Self` doesn't have `#[must_use]`. I feel like all the cases reported by it were false positives. Most were functions on `CommitBuilder`, where we take `mut self` and return `Self`. I don't think I've ever forgotten to use the result of those.
- Loading branch information