mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-08 02:43:06 -05:00
22 lines
481 B
JavaScript
22 lines
481 B
JavaScript
module.exports = {
|
|
bracketSpacing: true,
|
|
bracketSameLine: true,
|
|
singleQuote: false,
|
|
jsxSingleQuote: false,
|
|
trailingComma: "es5",
|
|
semi: true,
|
|
printWidth: 110,
|
|
arrowParens: "always",
|
|
importOrder: [
|
|
// Mocks must be at the top as they contain vi.mock calls
|
|
"(.*)/__mocks__/(.*)",
|
|
"server-only",
|
|
"<THIRD_PARTY_MODULES>",
|
|
"^@formbricks/(.*)$",
|
|
"^~/(.*)$",
|
|
"^[./]",
|
|
],
|
|
importOrderSeparation: false,
|
|
importOrderSortSpecifiers: true,
|
|
};
|