What problem does this solve or what need does it fill?
The documentation provides a how-to for integrating bevy_lint into your editor: Rust Analyzer Support - Bevy CLI and Bevy Linter.
It works, but this effectively prevents you from also integrating clippy.
What solution would you like?
bevy_lint should have a mode that also runs clippy. Maybe something like bevy_lint --clippy.
What alternative(s) have you considered?
I'm currently using the following script:
#!/usr/bin/env bash
bevy_lint "$@" &
cargo clippy "$@" &
wait
Which works, but it'd be nice if we can have something built in.
What problem does this solve or what need does it fill?
The documentation provides a how-to for integrating
bevy_lintinto your editor: Rust Analyzer Support - Bevy CLI and Bevy Linter.It works, but this effectively prevents you from also integrating
clippy.What solution would you like?
bevy_lintshould have a mode that also runsclippy. Maybe something likebevy_lint --clippy.What alternative(s) have you considered?
I'm currently using the following script:
Which works, but it'd be nice if we can have something built in.