File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
6
6
7
7
### [ 2.0.2] - 2025-01-07
8
8
9
+ - index: specify eslint globals as "readonly" (changed in v9)
9
10
- update codeclimate config for eslint 9
10
11
11
12
### [ 2.0.1] - 2025-01-07
Original file line number Diff line number Diff line change @@ -12,16 +12,16 @@ module.exports = {
12
12
root : true ,
13
13
extends : [ "eslint:recommended" ] ,
14
14
globals : {
15
- CONT : 900 ,
16
- STOP : 901 ,
17
- DENY : 902 ,
18
- DENYSOFT : 903 ,
19
- DENYDISCONNECT : 904 ,
20
- DISCONNECT : 905 ,
21
- OK : 906 ,
22
- NEXT_HOOK : 907 ,
23
- DELAY : 908 ,
24
- DENYSOFTDISCONNECT : 909 ,
15
+ CONT : "readonly" ,
16
+ STOP : "readonly" ,
17
+ DENY : "readonly" ,
18
+ DENYSOFT : "readonly" ,
19
+ DENYDISCONNECT : "readonly" ,
20
+ DISCONNECT : "readonly" ,
21
+ OK : "readonly" ,
22
+ NEXT_HOOK : "readonly" ,
23
+ DELAY : "readonly" ,
24
+ DENYSOFTDISCONNECT : "readonly" ,
25
25
} ,
26
26
parserOptions : {
27
27
ecmaVersion : "latest" ,
You can’t perform that action at this time.
0 commit comments