From c94d9518008c527c25d060293fa70af3a872e53d Mon Sep 17 00:00:00 2001 From: Kristjan ESPERANTO <35647502+KristjanESPERANTO@users.noreply.github.com> Date: Wed, 14 May 2025 23:48:01 +0200 Subject: [PATCH] [feat] Add rule `no-undef` in config file validation --- CHANGELOG.md | 4 +--- js/check_config.js | 3 ++- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a24952ade..f82de5f079 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,10 +32,8 @@ planned for 2025-07-01 ### Fixed - [fix] Handle spellcheck issues (#3783) - -### Fixed - - [calendar] fix fullday event rrule until with timezone offset (#3781) +- [feat] Add rule `no-undef` in config file validation to fix #3785 (#3786) ### Updated diff --git a/js/check_config.js b/js/check_config.js index 50cf4f4463..b7912ced1e 100644 --- a/js/check_config.js +++ b/js/check_config.js @@ -54,7 +54,8 @@ function checkConfigFile () { globals: { ...globals.node } - } + }, + rules: { "no-undef": "error" } }, configFileName );