0
0
mirror of https://github.com/signalapp/libsignal.git synced 2024-09-19 11:32:17 +02:00
libsignal/.clippy.toml
Alex Konradi dc04e0ac2f
Lookup all Java classes through preload-aware fn
Change all usages of JNIEnv::find_class to a helper that checks the preload 
list first. Add the real thing to clippy's disallowed-methods list.
2024-04-18 17:29:00 -04:00

5 lines
166 B
TOML

too-many-arguments-threshold = 8
disallowed-methods = [
{ path = "jni::JNIEnv::find_class", reason = "use lookup helper instead" },
".." # keep any defaults
]