mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
18 lines
411 B
TOML
18 lines
411 B
TOML
[tasks.lint]
|
|
dependencies = ["check-format-flow", "clippy-each-feature"]
|
|
|
|
[tasks.check-format]
|
|
env = { LEPTOS_PROJECT_DIRECTORY = "../" }
|
|
args = ["fmt", "--", "--check", "--config-path", "${LEPTOS_PROJECT_DIRECTORY}"]
|
|
|
|
[tasks.clippy-each-feature]
|
|
dependencies = ["install-clippy"]
|
|
command = "cargo"
|
|
args = [
|
|
"clippy",
|
|
"--all-features",
|
|
"--no-deps",
|
|
"--",
|
|
"-D",
|
|
"clippy::print_stdout",
|
|
]
|