File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 20
20
"enhanced-resolve" : " ^5.15.0" ,
21
21
"eslint-plugin-es-x" : " ^7.5.0" ,
22
22
"get-tsconfig" : " ^4.7.0" ,
23
- "globals" : " ^14 .0.0" ,
23
+ "globals" : " ^15 .0.0" ,
24
24
"ignore" : " ^5.2.4" ,
25
25
"minimatch" : " ^9.0.0" ,
26
26
"semver" : " ^7.5.3"
Original file line number Diff line number Diff line change @@ -23,7 +23,9 @@ const defaultConfig = {
23
23
languageOptions : {
24
24
ecmaVersion : 6 ,
25
25
sourceType : "commonjs" ,
26
- globals : globals . node ,
26
+ // TODO: remove global.es2105 when dropping eslint v8 -- it has been fixed in eslint v9
27
+ // see: https://github.com/eslint/eslint/commit/0db676f9c64d2622ada86b653136d2bda4f0eee0
28
+ globals : { ...globals . es2015 , ...globals . node } ,
27
29
} ,
28
30
}
29
31
exports . RuleTester = function ( config = defaultConfig ) {
You can’t perform that action at this time.
0 commit comments