mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
doc: Remove reference to clippy::manual-strip
. (#9794)
This should have been removed in
8a9f475edb
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`.
This commit is contained in:
parent
90b741d3d3
commit
8192ac6f1e
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue