pesde/clippy.toml
daimond113 b8c4f7486b
refactor: switch from sync Path::exists() method
This commit disallows the method through clippy
and switches to the async equivalents, as to not
block the async runtime.
2025-03-09 17:41:38 +01:00

4 lines
No EOL
90 B
TOML

avoid-breaking-exported-api = false
disallowed-methods = [
"std::path::Path::exists"
]