Source code

Revision control

Copy as Markdown

Other Tools

# lazy-getter-object-name
Enforce the standard object variable name `lazy` for
`ChromeUtils.defineESModuleGetters`
## Examples of incorrect code for this rule
```js
const obj = {};
ChromeUtils.defineESModuleGetters(obj, {
AppConstants: "resource://gre/modules/AppConstants.sys.mjs",
});
```
## Examples of correct code for this rule
```js
const lazy = {};
ChromeUtils.defineESModuleGetters(lazy, {
AppConstants: "resource://gre/modules/AppConstants.sys.mjs",
});
```