зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1783406 - Provide a separate environment for the globals in recommended ESLint config r=Standard8
Differential Revision: https://phabricator.services.mozilla.com/D157665
This commit is contained in:
Родитель
db4c1e8525
Коммит
9c0af7af23
|
@ -22,6 +22,7 @@ module.exports = {
|
||||||
// "tools/lint/eslint/eslint-plugin-mozilla/lib/configs/recommended.js".
|
// "tools/lint/eslint/eslint-plugin-mozilla/lib/configs/recommended.js".
|
||||||
es2021: false,
|
es2021: false,
|
||||||
"mozilla/privileged": false,
|
"mozilla/privileged": false,
|
||||||
|
"mozilla/specific": false,
|
||||||
|
|
||||||
// Enable SpiderMonkey's self-hosted environment.
|
// Enable SpiderMonkey's self-hosted environment.
|
||||||
"spidermonkey-js/environment": true,
|
"spidermonkey-js/environment": true,
|
||||||
|
@ -136,22 +137,6 @@ module.exports = {
|
||||||
Record: "off",
|
Record: "off",
|
||||||
Temporal: "off",
|
Temporal: "off",
|
||||||
Tuple: "off",
|
Tuple: "off",
|
||||||
|
|
||||||
// Undefine globals from Mozilla recommended file
|
|
||||||
// "tools/lint/eslint/eslint-plugin-mozilla/lib/configs/recommended.js".
|
|
||||||
Cc: "off",
|
|
||||||
ChromeUtils: "off",
|
|
||||||
Ci: "off",
|
|
||||||
Components: "off",
|
|
||||||
Cr: "off",
|
|
||||||
Cu: "off",
|
|
||||||
Debugger: "off",
|
|
||||||
InstallTrigger: "off",
|
|
||||||
InternalError: "off",
|
|
||||||
Services: "off",
|
|
||||||
dump: "off",
|
|
||||||
openDialog: "off",
|
|
||||||
uneval: "off",
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -16,30 +16,11 @@ module.exports = {
|
||||||
browser: true,
|
browser: true,
|
||||||
es2021: true,
|
es2021: true,
|
||||||
"mozilla/privileged": true,
|
"mozilla/privileged": true,
|
||||||
|
"mozilla/specific": true,
|
||||||
},
|
},
|
||||||
|
|
||||||
extends: ["eslint:recommended", "plugin:prettier/recommended"],
|
extends: ["eslint:recommended", "plugin:prettier/recommended"],
|
||||||
|
|
||||||
globals: {
|
|
||||||
// These are all specific to Firefox unless otherwise stated.
|
|
||||||
Cc: false,
|
|
||||||
ChromeUtils: false,
|
|
||||||
Ci: false,
|
|
||||||
Components: false,
|
|
||||||
Cr: false,
|
|
||||||
Cu: false,
|
|
||||||
Debugger: false,
|
|
||||||
InstallTrigger: false,
|
|
||||||
// https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/InternalError
|
|
||||||
InternalError: true,
|
|
||||||
Services: false,
|
|
||||||
// https://developer.mozilla.org/docs/Web/API/Window/dump
|
|
||||||
dump: true,
|
|
||||||
openDialog: false,
|
|
||||||
// https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/uneval
|
|
||||||
uneval: false,
|
|
||||||
},
|
|
||||||
|
|
||||||
overrides: [
|
overrides: [
|
||||||
{
|
{
|
||||||
// System mjs files and jsm files are not loaded in the browser scope,
|
// System mjs files and jsm files are not loaded in the browser scope,
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
/**
|
||||||
|
* @fileoverview Defines the environment for the Firefox browser. Allows global
|
||||||
|
* variables which are non-standard and specific to Firefox.
|
||||||
|
*
|
||||||
|
* 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 = {
|
||||||
|
globals: {
|
||||||
|
Cc: false,
|
||||||
|
ChromeUtils: false,
|
||||||
|
Ci: false,
|
||||||
|
Components: false,
|
||||||
|
Cr: false,
|
||||||
|
Cu: false,
|
||||||
|
Debugger: false,
|
||||||
|
InstallTrigger: false,
|
||||||
|
// https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/InternalError
|
||||||
|
InternalError: true,
|
||||||
|
Services: false,
|
||||||
|
// https://developer.mozilla.org/docs/Web/API/Window/dump
|
||||||
|
dump: true,
|
||||||
|
openDialog: false,
|
||||||
|
// https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/uneval
|
||||||
|
uneval: false,
|
||||||
|
},
|
||||||
|
};
|
|
@ -30,6 +30,7 @@ module.exports = {
|
||||||
simpletest: require("../lib/environments/simpletest.js"),
|
simpletest: require("../lib/environments/simpletest.js"),
|
||||||
sjs: require("../lib/environments/sjs.js"),
|
sjs: require("../lib/environments/sjs.js"),
|
||||||
"special-powers-sandbox": require("../lib/environments/special-powers-sandbox.js"),
|
"special-powers-sandbox": require("../lib/environments/special-powers-sandbox.js"),
|
||||||
|
specific: require("../lib/environments/specific"),
|
||||||
privileged: require("../lib/environments/privileged.js"),
|
privileged: require("../lib/environments/privileged.js"),
|
||||||
xpcshell: require("../lib/environments/xpcshell.js"),
|
xpcshell: require("../lib/environments/xpcshell.js"),
|
||||||
},
|
},
|
||||||
|
|
Загрузка…
Ссылка в новой задаче