1
0
Fork 0
firefox/docs/code-quality/lint/linters/eslint-plugin-mozilla/rules/no-useless-parameters.rst
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

26 lines
800 B
ReStructuredText

no-useless-parameters
=====================
Reject common XPCOM methods called with useless optional parameters (eg.
``Services.io.newURI(url, null, null)``, or non-existent parameters (eg.
``Services.obs.removeObserver(name, observer, false)``).
This option can be autofixed (``--fix``).
Examples of incorrect code for this rule:
-----------------------------------------
.. code-block:: js
elt.addEventListener('click', handler, false);
Services.io.newURI('http://example.com', null, null);
Services.obs.notifyObservers(obj, 'topic', null);
Examples of correct code for this rule:
---------------------------------------
.. code-block:: js
elt.addEventListener('click', handler);
Services.io.newURI('http://example.com');
Services.obs.notifyObservers(obj, 'topic');