lint: inherit workspace clippy config in json-stream-parser and evaluations

Both crates were missing the [lints] workspace = true directive,
bypassing workspace clippy rules (unwrap_used, expect_used, etc.).
This commit is contained in:
Per Stark
2026-05-26 15:30:00 +02:00
parent a52dc802de
commit 1927149ce9
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -4,5 +4,8 @@ version = "0.1.0"
edition = "2021"
license = "MIT"
[lints]
workspace = true
[dependencies]
serde_json = { workspace = true }