mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
20 lines
486 B
JavaScript
20 lines
486 B
JavaScript
// Parent config file for all devtools browser mochitest files.
|
|
module.exports = {
|
|
"extends": [
|
|
"../testing/mochitest/browser.eslintrc.js"
|
|
],
|
|
// All globals made available in the test environment.
|
|
"globals": {
|
|
"DevToolsUtils": true,
|
|
"gDevTools": true,
|
|
"once": true,
|
|
"synthesizeKeyFromKeyTag": true,
|
|
"TargetFactory": true,
|
|
"waitForTick": true,
|
|
},
|
|
|
|
"rules": {
|
|
// Tests can always import anything.
|
|
"mozilla/reject-some-requires": 0,
|
|
},
|
|
};
|