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 f0f64b7 commit 3a6bd86Copy full SHA for 3a6bd86
2 files changed
.github/workflows/ci.yaml
@@ -10,7 +10,6 @@ env:
10
CARGO_TERM_COLOR: always
11
12
jobs:
13
-
14
# Run cargo test
15
test:
16
name: Test Suite
src/main.rs
@@ -1,3 +1,9 @@
1
+// Bevy code commonly triggers these lints and they may be important signals
2
+// about code quality. They are sometimes hard to avoid though, and the CI
3
+// workflow treats them as errors, so this allows them throughout the project.
4
+// Feel free to delete this line.
5
+#![allow(clippy::too_many_arguments, clippy::type_complexity)]
6
+
7
use bevy::prelude::*;
8
9
fn main() {
0 commit comments