@@ -111,10 +111,10 @@ dependencies = ["fmt_check", "fmt_examples_check"]
111111[tasks .clippy ]
112112description = " Lint only Seed with Clippy"
113113command = " cargo"
114- args = [" clippy" , " --all-features" , " --" ,
115- " --deny" , " warnings" ,
116- " --deny" , " clippy::pedantic" ,
117- " --deny" , " clippy::nursery" ,
114+ args = [" clippy" , " --all-features" , " --" ,
115+ " --deny" , " warnings" ,
116+ # "--deny", "clippy::pedantic",
117+ # "--deny", "clippy::nursery",
118118 " --allow" , " clippy::vec_init_then_push" , # Vec::new() + push are used in macros in shortcuts.rs
119119]
120120dependencies = [" default::install-clippy" ]
@@ -247,8 +247,8 @@ description = "Lint with Clippy"
247247command = " cargo"
248248args = [" clippy" , " --all-features" , " --" ,
249249 " --deny" , " warnings" ,
250- " --deny" , " clippy::pedantic" ,
251- " --deny" , " clippy::nursery" ,
250+ # "--deny", "clippy::pedantic",
251+ # "--deny", "clippy::nursery",
252252 " --allow" , " clippy::wildcard_imports" , # for `use seed::{prelude::*, *};`
253253 " --allow" , " clippy::future_not_send" , # JS/WASM is single threaded
254254 " --allow" , " clippy::used_underscore_binding" , # some libraries break this rule
0 commit comments