diff options
Diffstat (limited to 'editor/libeditor/tests/.eslintrc.js')
-rw-r--r-- | editor/libeditor/tests/.eslintrc.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editor/libeditor/tests/.eslintrc.js b/editor/libeditor/tests/.eslintrc.js new file mode 100644 index 0000000000..40ffdf1f0b --- /dev/null +++ b/editor/libeditor/tests/.eslintrc.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports = { + extends: ["plugin:mozilla/browser-test", "plugin:mozilla/mochitest-test"], + + plugins: ["no-unsanitized"], + + rules: { + "no-unsanitized/property": "off", + }, +}; |