summaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-12-20 00:31:45 -0500
committerGitHub <noreply@github.com>2023-12-20 05:31:45 +0000
commit0a0994ca64fceafde05997d93e5ca7d6e5baa7b2 (patch)
treec876ddcf63171ff1121f1e46799c2515e63ad370 /.eslintrc.json
parent3c226215419ca815712e9568f7d871a96f5ff1cf (diff)
HTML test updates (#398)
* Rename y-test to test-case * Rename y-description to test-description * Remove extension name * Update placeholder favicon * Refactor scripts * Make element types more consistent * More updates * Rename * Simplify file URLs * Rename file * Add descriptions * Rename * Rename * Rename
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json16
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"
}
},
{