aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-02-11 22:21:30 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-02-11 22:22:16 -0500
commit571a1fdbeb47b7557a77ed36291f9d4a604c7653 (patch)
tree2484ab8a0974a6aab387804441766568cc45ad6a /.eslintrc.json
parente2ac478cb7635cbd15d0033bd2c486689a7b4e67 (diff)
Update rules for test files
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json9
1 files changed, 9 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index f502479d..d4ae215b 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -65,6 +65,15 @@
"env": {
"jquery": true
}
+ },
+ {
+ "files": ["test/**/*.js"],
+ "env": {
+ "browser": false,
+ "es2017": false,
+ "webextensions": false,
+ "node": true
+ }
}
]
}