Skip to content

Commit

Permalink
refactor: remove -strict from cargo make tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
maximmaxim345 committed Feb 2, 2025
1 parent 33cd572 commit 8fc1717
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ description = "Run most verification tasks"
workspace = false
dependencies = [
"run-tests",
"lint-strict",
"docs-strict",
"lint",
"docs",
"spell-check",
"verify-doc-tests",
"verify-formatting",
Expand All @@ -19,8 +19,8 @@ description = "Run all verification tasks"
workspace = false
dependencies = [
"run-all-tests",
"lint-strict",
"docs-strict",
"lint",
"docs",
"spell-check",
"verify-doc-tests",
"verify-formatting",
Expand Down Expand Up @@ -69,7 +69,7 @@ workspace = false
command = "cargo"
args = ["fmt", "--check", "--all"]

[tasks.lint-strict]
[tasks.lint]
description = "Run Clippy with warnings treated as errors"
workspace = false
command = "cargo"
Expand All @@ -84,7 +84,7 @@ args = [
"warnings",
]

[tasks.docs-strict]
[tasks.docs]
description = "Generate documentation with warnings treated as errors"
workspace = false
command = "cargo"
Expand Down

0 comments on commit 8fc1717

Please sign in to comment.