swagger-typescript-api icon indicating copy to clipboard operation
swagger-typescript-api copied to clipboard

Ability to configure format of biome

Open crazylexa opened this issue 1 month ago • 0 comments

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?

crazylexa avatar Oct 29 '25 12:10 crazylexa