We have an abstract API JavaScript class and define the methods with parameters and empty body. We are getting 'Unused parameter apiOptions' but not an option to suppress it like other inspection errors. Generally this is a good inspection warning but in this case I want to ignore it. Any ideas?
/**
*
* @param {apiOptions|Object} apiOptions
*/
login: function(apiOptions) {},