File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ expectType<NodeJS.ReadableStream>(
72
72
expectType < NodeJS . ReadableStream > ( globbyStream ( '*.tmp' , { gitignore : true } ) ) ;
73
73
expectType < NodeJS . ReadableStream > ( globbyStream ( '*.tmp' , { ignore : [ '**/b.tmp' ] } ) ) ;
74
74
75
+ // eslint-disable-next-line unicorn/prefer-top-level-await
75
76
( async ( ) => {
76
77
const streamResult = [ ] ;
77
78
for await ( const path of globbyStream ( '*.tmp' ) ) {
Original file line number Diff line number Diff line change 68
68
"devDependencies" : {
69
69
"@globby/main-branch" : " sindresorhus/globby#main" ,
70
70
"@types/node" : " ^17.0.18" ,
71
- "ava" : " ^4.0 .1" ,
71
+ "ava" : " ^5.3 .1" ,
72
72
"benchmark" : " 2.1.4" ,
73
73
"get-stream" : " ^6.0.1" ,
74
74
"glob-stream" : " ^7.0.0" ,
75
75
"rimraf" : " ^3.0.2" ,
76
76
"tempy" : " ^3.0.0" ,
77
- "tsd" : " ^0.19 .1" ,
77
+ "tsd" : " ^0.28 .1" ,
78
78
"typescript" : " ^4.5.5" ,
79
- "xo" : " ^0.47.0 "
79
+ "xo" : " ^0.54.2 "
80
80
},
81
81
"xo" : {
82
82
"ignores" : [
83
83
" fixtures"
84
- ]
84
+ ],
85
+ "rules" : {
86
+ "@typescript-eslint/consistent-type-definitions" : " off" ,
87
+ "n/prefer-global/url" : " off" ,
88
+ "@typescript-eslint/consistent-type-imports" : " off"
89
+ }
85
90
},
86
91
"ava" : {
87
92
"files" : [
You can’t perform that action at this time.
0 commit comments