mirror of
https://github.com/signalapp/libsignal.git
synced 2025-12-05 01:10:27 +00:00
12 lines
695 B
TOML
12 lines
695 B
TOML
too-many-arguments-threshold = 8
|
|
disallowed-methods = [
|
|
{ path = "jni::JNIEnv::find_class", reason = "use lookup helper instead" },
|
|
{ path = "jni::JNIEnv::call_method", reason = "use helper method instead" },
|
|
{ path = "jni::JNIEnv::call_method_unchecked", reason = "use helper method instead" },
|
|
{ path = "jni::JNIEnv::call_static_method", reason = "use helper method instead" },
|
|
{ path = "jni::JNIEnv::call_static_method_unchecked", reason = "use helper method instead" },
|
|
{ path = "jni::JNIEnv::new_object", reason = "use helper method instead" },
|
|
{ path = "jni::JNIEnv::new_object_unchecked", reason = "use helper method instead" },
|
|
]
|
|
allow-unwrap-in-tests = true
|