Skip to content

Commit 38e0197

Browse files
committed
ci: removee --all-features flag from clippy cmd as its unnecessary
There are no features defined so its unnecessary
1 parent 05c2743 commit 38e0197

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
run: cargo fmt --all --check
6464

6565
- name: Run cargo clippy
66-
run: cargo clippy --all-targets --all-features -- -D warnings
66+
run: cargo clippy --all-targets -- -D warnings
6767

6868
audit:
6969
name: Audit

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ This project adheres to the [Contributor Covenant Code of Conduct](CODE_OF_CONDU
9191
### Code Style
9292

9393
- **Formatting**: Use `cargo fmt --all` to format your code
94-
- **Linting**: Run `cargo clippy --all-targets --all-features -- -D warnings` to check for lints
94+
- **Linting**: Run `cargo clippy --all-targets -- -D warnings` to check for lints
9595
- **Documentation**: Add doc comments for public APIs using `///`
9696
- **Testing**: Write tests for new functionality and bug fixes
9797
- **Backwards Compatibility**: Strive to maintain backwards compatibility whenever possible. If breaking changes are necessary, clearly document them and provide migration guidance
@@ -158,7 +158,7 @@ Run these commands to ensure your code meets the project standards:
158158
cargo fmt --all
159159

160160
# Check for lints
161-
cargo clippy --all-targets --all-features -- -D warnings
161+
cargo clippy --all-targets -- -D warnings
162162

163163
# Run tests
164164
cargo test

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ $ cargo fmt --all
155155
Run linting:
156156

157157
```console
158-
$ cargo clippy --all-targets --all-features -- -D warnings
158+
$ cargo clippy --all-targets -- -D warnings
159159
```
160160

161161
### Contributing

0 commit comments

Comments
 (0)