Closed vkatsuba closed 3 years ago
Hi All,
Not sure but looks like {unused_callbacks, cb_func_name_to_ignore} is not working, I'm try put for ignore some callback function from optional_callbacks and looks like this is not working for me. Tried constructions:
{unused_callbacks, cb_func_name_to_ignore}
optional_callbacks
-hank([{unused_callbacks, callback_func_name}]).
-hank([{unused_callbacks, callback_func_name/1}]).
-hank([{unused_callbacks, [callback_func_name/1]}]).
-hank([{unused_callbacks, [callback_func_name]}]).
Only -hank([unused_callbacks]). is working as expected.
-hank([unused_callbacks]).
Regards, --V
It's correct. It was not implemented yet. Its implementation will be part of #84.
Closed as duplicate.
Hi All,
Not sure but looks like
{unused_callbacks, cb_func_name_to_ignore}
is not working, I'm try put for ignore some callback function fromoptional_callbacks
and looks like this is not working for me. Tried constructions:Only
-hank([unused_callbacks]).
is working as expected.Regards, --V