diff options
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index a93888bb..1a427686 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -661,7 +661,7 @@ }, { "files": [ - "test/data/html/*.js" + "test/data/html/**/*.js" ], "parserOptions": { "sourceType": "script" @@ -670,9 +670,17 @@ "browser": true, "node": false, "webextensions": false - }, - "rules": { - "no-implicit-globals": "off" + } + }, + { + "files": [ + "test/data/html/**/*.js" + ], + "excludedFiles": [ + "test/data/html/js/html-test-utilities.js" + ], + "globals": { + "HtmlTestUtilities": "readonly" } }, { |