Skip to content

Commit e8056d7

Browse files
fix: allow to use any in docs (#79)
1 parent 0a04201 commit e8056d7

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

configs/markdown.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ async function getMarkdownRecommendedConfig() {
7676

7777
"@typescript-eslint/no-unused-vars": "off",
7878

79+
"@typescript-eslint/no-explicit-any": "off",
80+
7981
"@typescript-eslint/triple-slash-reference": "off",
8082
},
8183
},

validation/file.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,7 @@ run();
3030
```js
3131
new URL("./test");
3232
```
33+
34+
```typescript
35+
type MyRecord = Record<string, any>;
36+
```

0 commit comments

Comments
 (0)