2021-06-21 17:34:01 +00:00
|
|
|
module.exports = {
|
|
|
|
bracketSpacing: true,
|
2021-09-09 17:43:40 +00:00
|
|
|
bracketSameLine: true,
|
2021-06-21 17:34:01 +00:00
|
|
|
singleQuote: false,
|
|
|
|
jsxSingleQuote: false,
|
|
|
|
trailingComma: "es5",
|
|
|
|
semi: true,
|
|
|
|
printWidth: 110,
|
|
|
|
arrowParens: "always",
|
2022-02-15 20:30:52 +00:00
|
|
|
importOrder: ["^@(calcom|ee)/(.*)$", "^@lib/(.*)$", "^@components/(.*)$", "^@(server|trpc)/(.*)$", "^[./]"],
|
2021-09-22 19:52:38 +00:00
|
|
|
importOrderSeparation: true,
|
2022-02-11 20:24:11 +00:00
|
|
|
plugins: [require("./merged-prettier-plugin")],
|
2021-06-21 17:34:01 +00:00
|
|
|
};
|