mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
e540d28f07
Depends on D66378 Differential Revision: https://phabricator.services.mozilla.com/D66379 --HG-- extra : moz-landing-system : lando
16 lines
441 B
JavaScript
16 lines
441 B
JavaScript
// Parent config file for all devtools xpcshell files.
|
|
module.exports = {
|
|
"extends": [
|
|
"plugin:mozilla/xpcshell-test"
|
|
],
|
|
"rules": {
|
|
// Allow non-camelcase so that run_test doesn't produce a warning.
|
|
"camelcase": "off",
|
|
"block-scoped-var": "off",
|
|
// Tests don't have to cleanup observers
|
|
"mozilla/balanced-observers": 0,
|
|
// Tests can always import anything.
|
|
"mozilla/reject-some-requires": "off",
|
|
}
|
|
};
|