зеркало из https://github.com/mozilla/gecko-dev.git
27 строки
560 B
JavaScript
27 строки
560 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,
|
|
},
|
|
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true,
|
|
}
|
|
},
|
|
|
|
"rules": {
|
|
// Tests can always import anything.
|
|
"mozilla/reject-some-requires": 0,
|
|
},
|
|
};
|