We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eb4d6c commit c499d15Copy full SHA for c499d15
check.exe
25.5 KB
check.ps1
@@ -0,0 +1,9 @@
1
+#!/usr/bin/env pwsh
2
+Remove-Variable -Name RUSTUP_TOOLCHAIN -ErrorAction SilentlyContinue
3
+$CURRENT_DIR = Split-Path -Leaf -Path (Get-Location)
4
+
5
+if ($CURRENT_DIR -eq "bevy_api_gen") {
6
+ cargo +nightly-2024-12-15 clippy --all-targets --message-format=json
7
+} else {
8
+ cargo clippy --workspace --all-targets --message-format=json --features="lua54 rhai teal rune bevy/file_watcher bevy/multi_threaded"
9
+}
0 commit comments