14 lines
392 B
JavaScript
14 lines
392 B
JavaScript
|
module.exports = {
|
||
|
bracketSpacing: true,
|
||
|
bracketSameLine: true,
|
||
|
singleQuote: false,
|
||
|
jsxSingleQuote: false,
|
||
|
trailingComma: "es5",
|
||
|
semi: true,
|
||
|
printWidth: 110,
|
||
|
arrowParens: "always",
|
||
|
importOrder: ["^@(calcom|ee)/(.*)$", "^@lib/(.*)$", "^@components/(.*)$", "^@(server|trpc)/(.*)$", "^[./]"],
|
||
|
importOrderSeparation: true,
|
||
|
plugins: [require("./merged-prettier-plugin")],
|
||
|
};
|