Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions eslint-suppressions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2043,11 +2043,6 @@
"count": 20
}
},
"packages/utils/src/fs.ts": {
"jsdoc/require-returns": {
"count": 1
}
},
"packages/utils/src/hashing.test.ts": {
"n/no-unsupported-features/node-builtins": {
"count": 9
Expand Down Expand Up @@ -2083,16 +2078,6 @@
"count": 1
}
},
"packages/utils/src/mnemonic.ts": {
"jsdoc/tag-lines": {
"count": 1
}
},
"packages/utils/src/promise.ts": {
"jsdoc/tag-lines": {
"count": 1
}
},
"packages/utils/src/unitsConversion.test.ts": {
"@typescript-eslint/no-explicit-any": {
"count": 29
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/src/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export async function ensureDirectoryStructureExists(
*/
export async function forceRemove(entryPath: string): Promise<void> {
try {
return await fs.promises.rm(entryPath, {
await fs.promises.rm(entryPath, {
recursive: true,
force: true,
});
Expand Down
1 change: 1 addition & 0 deletions packages/utils/src/mnemonic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const { wordlist } = englishWordlist;

/**
* Transform a typed array containing mnemonic data to the seed phrase.
*
* @param uint8Array - Typed array containing mnemonic data.
* @returns The seed phrase.
*/
Expand Down
1 change: 1 addition & 0 deletions packages/utils/src/promise.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*
* A deferred Promise is one that can be resolved or rejected independently of
* the Promise construction.
*
* @template Result - The result type of the Promise.
*/
export type DeferredPromise<Result = void> = {
Expand Down
Loading