Files
tubestation/docs/code-quality/lint/linters/eslint-plugin-mozilla/valid-services-property.rst
Mark Banner dd194ee451 Bug 1479515 - Add an ESLint rule to check for valid property accesses on Services. r=Gijs
This is manually run and requires a full build. MOZ_OBJDIR needs to be set to point to the object directory.

Differential Revision: https://phabricator.services.mozilla.com/D156426
2022-09-12 16:38:44 +00:00

31 lines
755 B
ReStructuredText

valid-services-property
=======================
Ensures that accesses of properties of items accessed via the ``Services``
object are valid.
This rule requires a full build to run, and is not turned on by default. To run
this rule manually, use:
.. code-block:: console
MOZ_OBJDIR=objdir-ff-opt ./mach eslint --rule="mozilla/valid-services-property: error" *
Examples of incorrect code for this rule:
-----------------------------------------
Assuming ``foo`` is not defined within ``Ci.nsISearchService``.
.. code-block:: js
Services.search.foo();
Examples of correct code for this rule:
---------------------------------------
Assuming ``bar`` is defined within ``Ci.nsISearchService``.
.. code-block:: js
Services.search.bar();