Skip to content

Commit 44cb362

Browse files
refactor: code
1 parent eb50c3e commit 44cb362

File tree

18 files changed

+924
-931
lines changed

18 files changed

+924
-931
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -684,13 +684,13 @@ Type:
684684
type cache =
685685
| boolean
686686
| {
687-
keys: Record<string>;
687+
keys: Record<string, any>;
688688
}
689689
| {
690690
keys: (
691-
defaultCacheKeys: Record<string>,
691+
defaultCacheKeys: Record<string, any>,
692692
absoluteFilename: string,
693-
) => Promise<Record<string>>;
693+
) => Promise<Record<string, any>>;
694694
}
695695
| undefined;
696696
```
@@ -917,13 +917,13 @@ Type:
917917

918918
```ts
919919
type info =
920-
| Record<string>
920+
| Record<string, any>
921921
| ((item: {
922922
absoluteFilename: string;
923923
sourceFilename: string;
924924
filename: string;
925925
toType: ToType;
926-
}) => Record<string>);
926+
}) => Record<string, any>);
927927
```
928928

929929
Default: `undefined`

eslint.config.mjs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,5 @@ import configs from "eslint-config-webpack/configs.js";
44
export default defineConfig([
55
{
66
extends: [configs["recommended-dirty"]],
7-
rules: {
8-
"jsdoc/require-property-description": "off",
9-
"jest/expect-expect": "off",
10-
},
117
},
128
]);

0 commit comments

Comments
 (0)