File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ const { join } = require ( 'path' ) ;
4
+
5
+ module . exports = {
6
+ extends : join ( __dirname , 'index.js' ) ,
7
+ globals : { globalThis : 'off' } ,
8
+ } ;
Original file line number Diff line number Diff line change 3
3
const { join } = require ( 'path' ) ;
4
4
5
5
module . exports = {
6
- extends : join ( __dirname , 'index .js' ) ,
6
+ extends : join ( __dirname , '10 .js' ) ,
7
7
parserOptions : { ecmaVersion : 2015 } ,
8
8
globals : { BigInt : 'off' } ,
9
9
} ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const { join } = require('path');
5
5
module . exports = {
6
6
// The only way to ensure that ESLint resolves expected config from any location
7
7
extends : join ( __dirname , '../index.js' ) ,
8
- globals : { BigInt : 'readonly' } ,
8
+ globals : { BigInt : 'readonly' , globalThis : 'readonly' } ,
9
9
env : { node : true } ,
10
10
rules : {
11
11
'no-path-concat' : 'error' ,
You can’t perform that action at this time.
0 commit comments