Skip to content

Commit e705202

Browse files
cdervclaude
andcommitted
Use ecmaVersion "latest" for bundled JS parsing
The bundled quarto.js contains import attributes (`with { type: "json" }`) which require ES2025+. Use "latest" so espree tracks the spec automatically. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4f991ca commit e705202

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/bundle-bug-finder/eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export default [
22
{
33
files: ["**/*.js"],
44
languageOptions: {
5-
ecmaVersion: 2022,
5+
ecmaVersion: "latest",
66
sourceType: "module",
77
},
88
rules: {

0 commit comments

Comments
 (0)