Skip to content

Commit 1d889bb

Browse files
committed
Update CHANGELOG
1 parent 838db9c commit 1d889bb

6 files changed

+1298
-984
lines changed

.eslintrc.json

-10
This file was deleted.

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
## Version History
1212

13+
### v10.9.0
14+
15+
- :arrow_up: Update all deps
16+
1317
### v10.8.1
1418

1519
- :rocket: Add back Type.Any() for api.js

eslint.config.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import eslint from '@eslint/js';
2+
import tseslint from 'typescript-eslint';
3+
4+
export default tseslint.config(
5+
eslint.configs.recommended,
6+
...tseslint.configs.recommended,
7+
{
8+
"rules": {
9+
"@typescript-eslint/no-explicit-any": "warn"
10+
}
11+
}
12+
);

lib/openapi.ts

-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ export default class Docs {
4646

4747
const pathstr = path.join('/');
4848

49-
// @ts-ignore
5049
if (this.base.paths[pathstr] && this.base.paths[pathstr][parsed.method]) throw new Error(`Duplicate Path: ${parsed.method}: ${parsed.path}`);
5150

5251
if (!schemas.private) {
@@ -115,7 +114,6 @@ export default class Docs {
115114
};
116115
}
117116

118-
// @ts-ignore
119117
this.base.paths[pathstr][parsed.method] = document;
120118
}
121119
}

0 commit comments

Comments
 (0)