File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -17,3 +17,12 @@ opt-level = 3
17
17
18
18
[dependencies ]
19
19
bevy = " 0.15"
20
+
21
+ # These lints may be important signals about code quality, but normal Bevy code
22
+ # commonly triggers them and the CI workflow treats them as errors, so we've
23
+ # chosen to allow them in this template.
24
+ #
25
+ # Feel free to delete the following lines.
26
+ [lints .clippy ]
27
+ too_many_arguments = " allow"
28
+ type_complexity = " allow"
Original file line number Diff line number Diff line change 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
1
use bevy:: asset:: AssetMetaCheck ;
8
2
use bevy:: prelude:: * ;
9
3
You can’t perform that action at this time.
0 commit comments