aboutsummaryrefslogtreecommitdiffstats
path: root/tests/runner/.eslintrc.json
diff options
context:
space:
mode:
authorTimmy Willison <timmywil@users.noreply.github.com>2024-03-29 09:13:46 -0400
committerGitHub <noreply@github.com>2024-03-29 09:13:46 -0400
commit91df20be6b488ac6cf4da291d7ee3aa5d6feac73 (patch)
tree56b5c4f8b96a8323e3a6ce9c02c3e84c85a9d6d5 /tests/runner/.eslintrc.json
parent802642c37323d5fc05bfa4cee90a900953f9a98d (diff)
downloadjquery-ui-91df20be6b488ac6cf4da291d7ee3aa5d6feac73.tar.gz
jquery-ui-91df20be6b488ac6cf4da291d7ee3aa5d6feac73.zip
Tests: replace grunt-contrib-qunit with jQuery test runner
- add filestash workflow Close gh-2221
Diffstat (limited to 'tests/runner/.eslintrc.json')
-rw-r--r--tests/runner/.eslintrc.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/runner/.eslintrc.json b/tests/runner/.eslintrc.json
new file mode 100644
index 000000000..9dc38dbd7
--- /dev/null
+++ b/tests/runner/.eslintrc.json
@@ -0,0 +1,41 @@
+{
+ "root": true,
+
+ "extends": "jquery",
+
+ "overrides": [
+ {
+ "files": ["**/*"],
+ "env": {
+ "node": true
+ },
+ "globals": {
+ "fetch": false,
+ "Promise": false,
+ "require": false
+ },
+ "parserOptions": {
+ "ecmaVersion": 2022,
+ "sourceType": "module"
+ }
+ },
+ {
+ "files": ["./listeners.js"],
+ "env": {
+ "browser": true,
+ "node": false
+ },
+ "globals": {
+ "QUnit": false,
+ "Symbol": false
+ },
+ "parserOptions": {
+ "ecmaVersion": 5,
+ "sourceType": "script"
+ },
+ "rules": {
+ "strict": ["error", "function"]
+ }
+ }
+ ]
+}