Skip to content

Commit a00354d

Browse files
committed
Temporarily relax clippy lints
1 parent 0dbb7ba commit a00354d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ dependencies = ["fmt_check", "fmt_examples_check"]
111111
[tasks.clippy]
112112
description = "Lint only Seed with Clippy"
113113
command = "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
]
120120
dependencies = ["default::install-clippy"]
@@ -247,8 +247,8 @@ description = "Lint with Clippy"
247247
command = "cargo"
248248
args = ["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

Comments
 (0)