Files
tubestation/toolkit/modules/subprocess/.eslintrc.js
Mark Banner 41e3cce553 Bug 1797686 - Fix chrome worker ESLint definitions for toolkit/modules/subprocess. r=kmag
The current set up assumes that all files in the subprocess directory are chrome workers. This causes various globals to be assumed to be present when they are not.
Also stop using import-globals-from in preparation for migration to ES module.

Differential Revision: https://phabricator.services.mozilla.com/D160487
2022-10-27 20:17:38 +00:00

14 lines
340 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
module.exports = {
extends: "../../components/extensions/.eslintrc.js",
rules: {
"no-console": "off",
},
};