Bug 1504467 [wpt PR 13888] - Add requirements_flake8.txt to .pyup.yml, a=testonly
[gecko.git] / devtools / .eslintrc.xpcshell.js
blobd26896592187e85f611e201e435ff90f0cce49b5
1 // Parent config file for all devtools xpcshell files.
2 module.exports = {
3   "extends": [
4     "plugin:mozilla/xpcshell-test"
5   ],
6   "rules": {
7     // Allow non-camelcase so that run_test doesn't produce a warning.
8     "camelcase": "off",
9     "block-scoped-var": "off",
10     // Tests can always import anything.
11     "mozilla/reject-some-requires": "off",
12   }