swagger-typescript-api
swagger-typescript-api copied to clipboard
Ability to configure format of biome
I prefer to use single quotes for string and enum values.
So I tried to configure behaviour of generator from custom config file.
{
Ts: {
StringValue: (content) => `'${content}'`,
},
}
But i can't. It always replace single quotes with double quotes.
After some code analysis I found that generator make all job correctly. But after that biome format code.
Could you please provide ability to configure options of biome formating or make it optional?