fix clippy lint breaking my code
This commit is contained in:
parent
ce45bc622d
commit
f7e65c6cbb
2 changed files with 3 additions and 2 deletions
1
build.rs
1
build.rs
|
@ -65,6 +65,7 @@ impl AssetsWriter {
|
|||
) -> io::Result<()> {
|
||||
for (group_name, group) in &root.groups {
|
||||
writeln!(file, "{indent}mod {group_name} {{")?;
|
||||
writeln!(file, "{indent}\t#[allow(clippy::wildcard_imports)]")?;
|
||||
writeln!(file, "{indent}\tuse super::*;")?;
|
||||
write_assets_struct(file, group, &format!("{indent}\t"))?;
|
||||
writeln!(file, "}}")?;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#![warn(rust_2018_idioms)]
|
||||
#![forbid(clippy::wildcard_imports, elided_lifetimes_in_paths, unsafe_code)]
|
||||
#[allow(dead_code, unused_variables)]
|
||||
#![deny(clippy::wildcard_imports)]
|
||||
#![forbid(elided_lifetimes_in_paths, unsafe_code)]
|
||||
|
||||
mod assets {
|
||||
include!(env!("ASSETS_RS"));
|
||||
|
|
Loading…
Reference in a new issue