Bug 1880216 - Migrate Fenix docs into Sphinx. r=owlish,geckoview-reviewers,android...
[gecko.git] / testing / talos / .eslintrc.js
blob8dd0a1c5598857cc890d8b91bf02d4c8194d34b2
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 "use strict";
7 module.exports = {
8   globals: {
9     Cc: false,
10     Ci: false,
11     Cu: false,
12     content: true,
13     dumpLog: false,
14     netscape: false,
15     addMessageListener: false,
16     goQuitApplication: false,
17     MozillaFileLogger: false,
18     Profiler: true,
19     Services: false,
20     gBrowser: false,
21     removeMessageListener: false,
22     sendAsyncMessage: false,
23     sendSyncMessage: false,
24     TalosPowersContent: true,
25     TalosPowersParent: true,
26     TalosContentProfiler: true,
27     TalosParentProfiler: true,
28     tpRecordTime: true,
29   },
31   plugins: ["mozilla"],
33   rules: {
34     "mozilla/avoid-Date-timing": "error",
35   },