Bug 1746711 Part 2: Ensure the enqueued surface has a color space. r=gfx-reviewers...
[gecko.git] / services / automation / .eslintrc.js
blob21c7383fe2ad06eee163574813cd1d13d2775dab
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     browser: true,
10   },
11   rules: {
12     "no-unused-vars": [
13       "error",
14       { args: "none", varsIgnorePattern: "^EXPORTED_SYMBOLS|^Sync" },
15     ],
16   },