blob: bc2bec8ef1462b76de5b0fbebd8abaf7b6a278e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
"use strict";
module.exports = {
extends: ["plugin:mozilla/mochitest-test"],
globals: {
Assert: true,
},
rules: {
// ownerGlobal doesn't exist in content privileged windows.
"mozilla/use-ownerGlobal": "off",
},
};
|