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",
|
2021-09-22 19:52:38 +00:00
|
|
|
importOrder: ["^@ee/(.*)$", "^@lib/(.*)$", "^@components/(.*)$", "^[./]"],
|
|
|
|
importOrderSeparation: true,
|
2021-06-21 17:34:01 +00:00
|
|
|
};
|