Skip to content

Commit 2455c60

Browse files
committed
Meta tweaks
1 parent a0e4028 commit 2455c60

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

index.test-d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ expectType<NodeJS.ReadableStream>(
7272
expectType<NodeJS.ReadableStream>(globbyStream('*.tmp', {gitignore: true}));
7373
expectType<NodeJS.ReadableStream>(globbyStream('*.tmp', {ignore: ['**/b.tmp']}));
7474

75+
// eslint-disable-next-line unicorn/prefer-top-level-await
7576
(async () => {
7677
const streamResult = [];
7778
for await (const path of globbyStream('*.tmp')) {

package.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,20 +68,25 @@
6868
"devDependencies": {
6969
"@globby/main-branch": "sindresorhus/globby#main",
7070
"@types/node": "^17.0.18",
71-
"ava": "^4.0.1",
71+
"ava": "^5.3.1",
7272
"benchmark": "2.1.4",
7373
"get-stream": "^6.0.1",
7474
"glob-stream": "^7.0.0",
7575
"rimraf": "^3.0.2",
7676
"tempy": "^3.0.0",
77-
"tsd": "^0.19.1",
77+
"tsd": "^0.28.1",
7878
"typescript": "^4.5.5",
79-
"xo": "^0.47.0"
79+
"xo": "^0.54.2"
8080
},
8181
"xo": {
8282
"ignores": [
8383
"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+
}
8590
},
8691
"ava": {
8792
"files": [

0 commit comments

Comments
 (0)