diff --git a/CHANGELOG.md b/CHANGELOG.md index 797cb57a..404fdc98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ planned for 2026-01-01 ### Fixed +- feat: add ESlint rule `no-sparse-arrays` for config check to fix #3910 (#3911) + ### Updated - [core] Update dependencies (#3909) diff --git a/js/check_config.js b/js/check_config.js index 14fda3c5..d8c97358 100644 --- a/js/check_config.js +++ b/js/check_config.js @@ -58,7 +58,10 @@ function checkConfigFile () { ...globals.node } }, - rules: { "no-undef": "error" } + rules: { + "no-sparse-arrays": "error", + "no-undef": "error" + } }, configFileName );