Explain the new check-cfg lint
All checks were successful
/ test (pull_request) Successful in 2m26s

This commit is contained in:
Aaron Fenyes 2025-05-29 17:52:55 -07:00
parent f1da5155a3
commit 8732cb77c2

View file

@ -46,6 +46,10 @@ features = [
dyna3 = { path = ".", default-features = false, features = ["dev"] }
wasm-bindgen-test = "0.3.34"
# turn off spurious warnings about the custom config that Sycamore uses
#
# https://sycamore.dev/book/troubleshooting#unexpected-cfg-condition-name--sycamore-force-ssr
#
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(sycamore_force_ssr)"] }