mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-16 04:18:42 -06:00
add lints
This commit is contained in:
parent
656f124549
commit
ec592951bc
|
@ -1,8 +1,14 @@
|
|||
//TODO move lints to workspace Cargo.toml
|
||||
#![allow(
|
||||
clippy::too_many_arguments, // allowed because systems often need a lot of argumentss
|
||||
clippy::enum_variant_names,
|
||||
clippy::type_complexity
|
||||
)]
|
||||
#![forbid(
|
||||
static_mut_refs,
|
||||
unsafe_op_in_unsafe_fn,
|
||||
rust_2024_compatibility,
|
||||
)]
|
||||
|
||||
use shipyard::{
|
||||
World, Workload, IntoWorkload,
|
||||
|
|
Loading…
Reference in a new issue