We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When generating d.ts files using oas2ts the import statements ignore style from cmd options and from the config.json file.
When using this config:
{ "style": { "singleQuote": false, "semi": true } }
Expected result:
import { Foo } from "./Bar";
Actual result:
import { Foo } from './Bar'
(since these are prettier defaults, should work even without specifying)
If this is more of an issue with json-schema-to-typescript, let me know and I will create an issue in their github instead. Thanks!
The text was updated successfully, but these errors were encountered:
🎉 This issue has been resolved in version 1.4.2 🎉
The release is available on:
Your optic bot 📦🚀
Sorry, something went wrong.
ckaraviotis
Successfully merging a pull request may close this issue.
When generating d.ts files using oas2ts the import statements ignore style from cmd options and from the config.json file.
When using this config:
Expected result:
Actual result:
(since these are prettier defaults, should work even without specifying)
If this is more of an issue with json-schema-to-typescript, let me know and I will create an issue in their github instead.
Thanks!
The text was updated successfully, but these errors were encountered: