diff options
Diffstat (limited to 'devtools/client/.eslintrc.js')
-rw-r--r-- | devtools/client/.eslintrc.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/devtools/client/.eslintrc.js b/devtools/client/.eslintrc.js index 81eb6568ee..e5e1918b86 100644 --- a/devtools/client/.eslintrc.js +++ b/devtools/client/.eslintrc.js @@ -14,4 +14,13 @@ module.exports = { // content privileged windows, where ownerGlobal doesn't exist. "mozilla/use-ownerGlobal": "off", }, + overrides: [ + { + // Tests verify the exact source code of these functions + files: ["inspector/markup/test/doc_markup_events_*.html"], + rules: { + "no-unused-vars": "off", + }, + }, + ], }; |