mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-04 03:16:15 -05:00
5c378bc8ce
Move repository into a monorepo with turborepo and pnpm. This is a big change in the way the code is organized, used and deployed.
13 lines
312 B
JavaScript
13 lines
312 B
JavaScript
/* @see https://github.com/tailwindlabs/prettier-plugin-tailwindcss/issues/31#issuecomment-1024722576 */
|
|
const tailwind = require("prettier-plugin-tailwindcss");
|
|
|
|
const combinedFormatter = {
|
|
parsers: {
|
|
typescript: {
|
|
...tailwind.parsers.typescript,
|
|
},
|
|
},
|
|
};
|
|
|
|
module.exports = combinedFormatter;
|