Skip to content
Open
6 changes: 4 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"stopOnEntry": false,
"args": [
"--quick-test",
"--timeout=600000"
"--timeout=600000",
"Real"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
Expand All @@ -18,7 +19,8 @@
"--nolazy"
],
"env": {
"NODE_ENV": "development"
"NODE_ENV": "development",
"NODE_TLS_REJECT_UNAUTHORIZED": "0"
},
"console": "internalConsole",
"sourceMaps": false,
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ Features
- Tested on **[over 1,500 real-world APIs](https://apis.guru/browse-apis/)** from Google, Microsoft, Facebook, Spotify, etc.
- Supports [circular references](https://apitools.dev/swagger-parser/docs/#circular-refs), nested references, back-references, and cross-references
- Maintains object reference equality — `$ref` pointers to the same value always resolve to the same object instance

- Checks for inconsistencies in Swagger v2.0 and OpenAPI v3.0 specs:
- path parameter mis-matches
- required field mis-matches
- arrays without item definition


Related Projects
Expand Down
Loading