Source code

Revision control

Copy as Markdown

Other Tools

reject-multiple-getters-calls
=============================
Rejects multiple calls on ``ChromeUtils.defineESModuleGetters`` for the same
target in the same context.
Examples of incorrect code for this rule:
-----------------------------------------
.. code-block:: js
ChromeUtils.defineESModuleGetters(lazy, {
});
ChromeUtils.defineESModuleGetters(lazy, {
});
Examples of correct code for this rule:
---------------------------------------
.. code-block:: js
ChromeUtils.defineESModuleGetters(lazy, {
});