summaryrefslogtreecommitdiff
path: root/toolkit/components/narrate/test/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/narrate/test/.eslintrc.js')
-rw-r--r--toolkit/components/narrate/test/.eslintrc.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/toolkit/components/narrate/test/.eslintrc.js b/toolkit/components/narrate/test/.eslintrc.js
new file mode 100644
index 0000000000..5ff0bae7ee
--- /dev/null
+++ b/toolkit/components/narrate/test/.eslintrc.js
@@ -0,0 +1,23 @@
+"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"
+ }
+};