valid-ci-uses¶
Ensures that interface accesses on Ci
are valid, and property accesses on
Ci.<interface>
are also valid.
This rule requires a full build to run, and is not turned on by default. To run this rule manually, use:
MOZ_OBJDIR=objdir-ff-opt ./mach eslint --rule="mozilla/valid-ci-uses: error" *
Examples of incorrect code for this rule:¶
nsIFoo
does not exist.
Ci.nsIFoo
UNKNOWN_CONSTANT
does not exist on nsIURIFixup.
Ci.nsIURIFixup.UNKNOWN_CONSTANT
Examples of correct code for this rule:¶
nsIFile
does exist.
Ci.nsIFile
FIXUP_FLAG_NONE
does exist on nsIURIFixup.
Ci.nsIURIFixup.FIXUP_FLAG_NONE