From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- devtools/platform/tests/xpcshell/.eslintrc.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 devtools/platform/tests/xpcshell/.eslintrc.js (limited to 'devtools/platform/tests/xpcshell/.eslintrc.js') diff --git a/devtools/platform/tests/xpcshell/.eslintrc.js b/devtools/platform/tests/xpcshell/.eslintrc.js new file mode 100644 index 0000000000..dc7f2c85c4 --- /dev/null +++ b/devtools/platform/tests/xpcshell/.eslintrc.js @@ -0,0 +1,19 @@ +"use strict"; + +// Parent config file for all devtools xpcshell files. +module.exports = { + extends: ["plugin:mozilla/xpcshell-test"], + rules: { + // Allow non-camelcase so that run_test doesn't produce a warning. + camelcase: "off", + // Allow using undefined variables so that tests can refer to functions + // and variables defined in head.js files, without having to maintain a + // list of globals in each .eslintrc file. + // Note that bug 1168340 will eventually help auto-registering globals + // from head.js files. + "no-undef": "off", + "block-scoped-var": "off", + // Tests can always import anything. + "mozilla/reject-some-requires": "off", + }, +}; -- cgit v1.2.3