summaryrefslogtreecommitdiffstats
path: root/docs/code-quality/lint/linters/eslint-plugin-mozilla/rules/no-useless-parameters.rst
blob: 485caf6522f7d9dc0b57e4ed17eec182b5099a8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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');