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
14 lines
340 B
JavaScript
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",
|
|
},
|
|
};
|