Daniel Gruszczyk

Results 12 issues of Daniel Gruszczyk

I have set `maxLineLength` to some large value (say 999) so that all imports are in one line. Now when I have a file where I want to auto-import, and...

**Describe the issue** Getting `SEVERE` exception whilst processing a request: ``` Cannot invoke "org.mockserver.logging.MockServerLogger.logEvent(org.mockserver.log.model.LogEntry)" because "mockServerLogger" is null +0ms java.lang.NullPointerException: Cannot invoke "org.mockserver.logging.MockServerLogger.logEvent(org.mockserver.log.model.LogEntry)" because "mockServerLogger" is null +0ms at org.mockserver.matchers.RegexStringMatcher.matchesByStrings(RegexStringMatcher.java:100)...

``` > npx sls package Packaging my-project for stage dev (eu-west-1) Bundling with Webpack... ERROR in /Users/danielgruszczyk/workspace/my-project/src/handlers/test/index.js 0:0 error Parsing error: require() of ES Module /Users/danielgruszczyk/workspace/my-project/node_modules/eslint/node_modules/eslint-scope/lib/definition.js from /Users/danielgruszczyk/workspace/my-project/node_modules/babel-eslint/lib/require-from-eslint.js not supported....

I have a directory with multiple schemas, some of them $ref others: ``` schemas/ draft.json new-draft.json enums/ some-enum.json ``` Both `draft` and `new-draft` reference the `enums/some-enum.json`. Is there a way...

### Description I am already running my tests with `--loader=ts-node/esm` to handle TypeScript to ESM compilation and writing my tests in TypeScript. How can I now plug in `Testdouble` to...

Linked issue: https://github.com/bcherny/json-schema-to-typescript/issues/200 Addressed comments/requests in: https://github.com/bcherny/json-schema-to-typescript/pull/262#pullrequestreview-324907958 Implemented as a normalizer under cli/options flag: `inferStringEnumKeysFromValues`

Given structure like so: `schema/my-stuff.json :` ``` { "id": "Stuff", "type": "object", "properties": { "someProp": { "$ref": "schema/enums/awesome-enum.json" } } } ``` `schema/enums/awesome.json :` ``` { "id": "Awesome", "type": "string",...

If one writes their schemas in `yaml` file format, is there a simple way to generate types using the CLI tool? If not - could a support for that be...

enhancement
help wanted
good first issue

In your docs and [sample project](https://github.com/kogosoftwarellc/open-api/blob/09fed6d77536b3d7d1d38a2630a096041da773ee/packages/express-openapi/test/sample-projects/with-validation-middleware-disabled-in-the-apiDoc/api-doc.js) a `x-express-openapi-disable-validation-middleware` can be added at a top-level api-doc. However! Configuring top-level api-doc like so in TypeScript results in an error: ``` Object literal...

In your docs you have a screenshot of a nice swagger page with docs: https://github.com/kogosoftwarellc/open-api/blob/main/packages/express-openapi/docs/swagger-page.png What I am getting by default on `/api-docs` endpoint is just plain JSON with full...