Skip to content

Commit

Permalink
doc: Remove reference to clippy::manual-strip. (#9794)
Browse files Browse the repository at this point in the history
This should have been removed in
8a9f475 when the rest of the references
to / usages of `clippy::manual-strip` were removed. It was originally
needed in the long ago past when supporting Rust 1.45 was a concern.

# Objective

- Docs on linting should match the actual current practice.
- Docs currently mention `-A clippy::manual-strip` which hasn't been
needed in a long time.

## Solution

- Remove reference to `-A clippy::manual-strip`.
  • Loading branch information
waywardmonkeys committed Sep 14, 2023
1 parent 90b741d commit 8192ac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/linters.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cargo fmt --all
Can be automatically run with [`cargo run -p ci`](../tools/ci) (which also runs other checks) or manually with this command:

```bash
cargo clippy --workspace --all-targets --all-features -- -D warnings -A clippy::type_complexity -A clippy::manual-strip
cargo clippy --workspace --all-targets --all-features -- -D warnings -A clippy::type_complexity
```

Explanation:
Expand Down

0 comments on commit 8192ac6

Please sign in to comment.