mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
46650a73f4
MozReview-Commit-ID: AX58XXecRcL --HG-- extra : rebase_source : ec04a97c61a8cd5ba04e1f144df3f6799852d08b
21 lines
465 B
Plaintext
21 lines
465 B
Plaintext
// Parent config file for all devtools browser mochitest files.
|
|
{
|
|
"extends": [
|
|
"../testing/mochitest/browser.eslintrc"
|
|
],
|
|
// 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,
|
|
},
|
|
}
|