Skip to content

Commit 554bb0e

Browse files
[feat] Add rule no-undef in config file validation (#3786)
This should solve the problem #3785.
1 parent 965e935 commit 554bb0e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,8 @@ planned for 2025-07-01
3232
### Fixed
3333

3434
- [fix] Handle spellcheck issues (#3783)
35-
36-
### Fixed
37-
3835
- [calendar] fix fullday event rrule until with timezone offset (#3781)
36+
- [feat] Add rule `no-undef` in config file validation to fix #3785 (#3786)
3937

4038
### Updated
4139

js/check_config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ function checkConfigFile () {
5454
globals: {
5555
...globals.node
5656
}
57-
}
57+
},
58+
rules: { "no-undef": "error" }
5859
},
5960
configFileName
6061
);

0 commit comments

Comments
 (0)