mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
23 lines
403 B
JavaScript
23 lines
403 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
module.exports = { // eslint-disable-line no-undef
|
||
|
|
"extends": [
|
||
|
|
"../.eslintrc.js"
|
||
|
|
],
|
||
|
|
|
||
|
|
"globals": {
|
||
|
|
"is": true,
|
||
|
|
"isnot": true,
|
||
|
|
"ok": true,
|
||
|
|
"NarrateTestUtils": true,
|
||
|
|
"content": true,
|
||
|
|
"ContentTaskUtils": true,
|
||
|
|
"ContentTask": true,
|
||
|
|
"BrowserTestUtils": true,
|
||
|
|
"gBrowser": true,
|
||
|
|
},
|
||
|
|
|
||
|
|
"rules": {
|
||
|
|
"mozilla/import-headjs-globals": "warn"
|
||
|
|
}
|
||
|
|
};
|