summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/extensions/child/.eslintrc.js
blob: 970cd0874ecdfe1e0b02f855eb611e99751dc59a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use strict";

module.exports = {
  globals: {
    // These are defined in the WebExtension script scopes by ExtensionCommon.jsm.
    // From toolkit/components/extensions/.eslintrc.js.
    ExtensionAPI: true,
    ExtensionCommon: true,
    extensions: true,
    ExtensionUtils: true,

    // From toolkit/components/extensions/child/.eslintrc.js.
    EventManager: true,
  },
};