Backed out 4 changesets (bug 1825722) for causing reftest failures CLOSED TREE
[gecko.git] / testing / raptor / .eslintrc.js
blobaaf8ae940c20e065519f0b039ab8f5e2b2970473
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   env: {
9     webextensions: true,
10   },
12   globals: {
13     getTestConfig: false,
14     startMark: true,
15     endMark: true,
16     name: true,
17   },
19   plugins: ["mozilla"],
21   rules: {
22     "mozilla/avoid-Date-timing": "error",
23   },