summaryrefslogtreecommitdiffstats
path: root/docs/code-quality/lint/linters/eslint-plugin-mozilla/no-useless-parameters.rst
blob: 278374619819b78a7c200f5fa90622b5f67c0618 (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
27
=====================
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');