зеркало из https://github.com/mozilla/gecko-dev.git
14 строки
304 B
JavaScript
14 строки
304 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
"env": { "browser": true },
|
|
"globals": {
|
|
"define": true,
|
|
},
|
|
"rules": {
|
|
// See bug 1288147, the devtools front-end wants to be able to run in
|
|
// content privileged windows, where ownerGlobal doesn't exist.
|
|
"mozilla/use-ownerGlobal": "off",
|
|
}
|
|
};
|