diff options
Diffstat (limited to 'eslint.config.js')
-rw-r--r-- | eslint.config.js | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/eslint.config.js b/eslint.config.js index 8b0b0f4a5..dabff3157 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -21,7 +21,8 @@ export default [ "test/node_smoke_tests/commonjs/**", "test/node_smoke_tests/module/**", "test/promises_aplus_adapters/**", - "test/middleware-mockserver.cjs" + "test/middleware-mockserver.cjs", + "test/runner/**/*.js" ], languageOptions: { globals: { @@ -34,6 +35,13 @@ export default [ } }, + { + files: [ "test/runner/listeners.js" ], + languageOptions: { + sourceType: "script" + } + }, + // Source { files: [ "src/**" ], @@ -161,7 +169,7 @@ export default [ "test/**" ], ignores: [ - "test/data/jquery-1.9.1.js", + "test/data/jquery-3.7.1.js", "test/data/badcall.js", "test/data/badjson.js", "test/data/support/csp.js", @@ -256,8 +264,7 @@ export default [ { files: [ "build/**", - "test/data/testinit.js", - "test/data/testinit-jsdom.js" + "test/data/testinit.js" ], languageOptions: { globals: { @@ -274,8 +281,7 @@ export default [ { files: [ "build/**/*.js", - "test/data/testinit.js", - "test/data/testinit-jsdom.js" + "test/data/testinit.js" ], languageOptions: { sourceType: "commonjs" |